Rodando os testes unitários #3
Workflow file for this run
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
name: Testes | |
run-name: Rodando os testes unitários | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
testes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configurar Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Configurar Severino | |
run: make setup | |
- name: Rodar os testes | |
run: make pytest |