We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc90a56 commit 33dba6bCopy full SHA for 33dba6b
1 file changed
.github/workflows/ci.yml
@@ -14,18 +14,18 @@ jobs:
14
runs-on: ubuntu-latest
15
16
steps:
17
- - name: Checkout do repositório
+ - name: Checkout repository
18
uses: actions/checkout@v4
19
20
- - name: Configurar Python
+ - name: Set up Python
21
uses: actions/setup-python@v5
22
with:
23
python-version: '3.12'
24
25
- - name: Instalar dependências
+ - name: Install dependencies
26
run: |
27
python -m pip install --upgrade pip
28
pip install pytest pytest-schema jsonschema requests
29
30
- - name: Rodar os testes
31
- run: pytest --ignore=semana_003
+ - name: Run tests
+ run: pytest --ignore=week_003
0 commit comments