From 0270b91ae38343d31062ab1631f05512a47d6674 Mon Sep 17 00:00:00 2001 From: Anderson Vieira Date: Wed, 1 May 2024 16:24:32 -0300 Subject: [PATCH] =?UTF-8?q?Atualiza=C3=A7=C3=A3o=20do=20arquivo=20yaml=20c?= =?UTF-8?q?om=20a=20execu=C3=A7=C3=A3o=20dos=20testes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pipeline.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pipeline.yaml b/.github/workflows/pipeline.yaml index 776f523..22492c9 100644 --- a/.github/workflows/pipeline.yaml +++ b/.github/workflows/pipeline.yaml @@ -6,10 +6,18 @@ jobs: runs-on: ubuntu-latest steps: - - name: Copiar os arquivos do repositório + - name: Copiar os arquivos do projeto uses: actions/checkout@v4.1.4 - name: Instalar o python uses: actions/setup-python@v5 with: - python-version: '3.11' + python-version: '3.11' + + - name: Instalar as Bibliotecas do projeto + run: | + pip install -r requirements.txt + + - name: Execução dos testes + run: | + robot -d results tests