Skip to content

Commit f49da79

Browse files
committed
👷 chore: improve step
1 parent 2c8f68c commit f49da79

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/lint_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ jobs:
99
with:
1010
python-version: 3.14.x
1111
- run: pip install --upgrade pip wheel
12+
- run: pip install -r requirements-dev.txt || pip install --editable . || pip install .
1213
- run: pip install bandit black codespell ruff isort mypy pytest pyupgrade safety pydantic
1314
- name: Lint
1415
run: bash scripts/lint.sh
1516
- run: bandit --recursive --skip B101,B105 . # B101 is assert statements, B105 for token URL
1617
- run: codespell app
17-
- run: pip install -r requirements.txt || pip install --editable . || pip install .
1818
- run: mkdir --parents --verbose .mypy_cache
1919
- run: mypy --ignore-missing-imports --install-types --non-interactive .
2020
- run: pytest . || true

0 commit comments

Comments
 (0)