We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 682aecd + a1293e0 commit b0031c5Copy full SHA for b0031c5
.github/workflows/python-app.yml
@@ -18,7 +18,7 @@ jobs:
18
runs-on: ubuntu-latest
19
20
steps:
21
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
22
- name: Set up Python 3.10
23
uses: actions/setup-python@v3
24
with:
@@ -27,7 +27,7 @@ jobs:
27
run: |
28
python -m pip install --upgrade pip
29
pip install flake8 pytest
30
- if [ -f requirements.txt ]; then pip install -r requirements_dev.txt; fi
+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
31
- name: Lint with flake8
32
33
# stop the build if there are Python syntax errors or undefined names
0 commit comments