-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Atualização do arquivo yaml com a execução dos testes
- Loading branch information
1 parent
f9b3433
commit 0270b91
Showing
1 changed file
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
|
||
- 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 |