Skip to content

Commit efe2e99

Browse files
authored
requirement.txt, not requirements.txt
Normally the filename is plural, not singular.
1 parent 5e2ce16 commit efe2e99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/lint_python.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
steps:
77
- uses: actions/checkout@v3
8-
- uses: actions/setup-python@v3
8+
- uses: actions/setup-python@v4
99
- run: pip install --upgrade pip wheel
1010
- run: pip install bandit black codespell flake8 flake8-bugbear flake8-return
1111
flake8-comprehensions isort mypy pytest pyupgrade safety
@@ -15,7 +15,7 @@ jobs:
1515
- run: flake8 --ignore=E124,E128,E225,E251,E302,R502,R503,W291,W293,W605
1616
--max-complexity=11 --max-line-length=265 --show-source --statistics .
1717
- run: isort --check-only --profile black . || true
18-
- run: pip install -r requirements.txt || pip install --editable . || pip install . || true
18+
- run: pip install -r requirement.txt || pip install -r requirements.txt || pip install --editable . || pip install . || true
1919
- run: mkdir --parents --verbose .mypy_cache
2020
- run: mypy --ignore-missing-imports --install-types --non-interactive . || true
2121
- run: pytest . || true

0 commit comments

Comments
 (0)