We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c8f68c commit f49da79Copy full SHA for f49da79
.github/workflows/lint_python.yml
@@ -9,12 +9,12 @@ jobs:
9
with:
10
python-version: 3.14.x
11
- run: pip install --upgrade pip wheel
12
+ - run: pip install -r requirements-dev.txt || pip install --editable . || pip install .
13
- run: pip install bandit black codespell ruff isort mypy pytest pyupgrade safety pydantic
14
- name: Lint
15
run: bash scripts/lint.sh
16
- run: bandit --recursive --skip B101,B105 . # B101 is assert statements, B105 for token URL
17
- run: codespell app
- - run: pip install -r requirements.txt || pip install --editable . || pip install .
18
- run: mkdir --parents --verbose .mypy_cache
19
- run: mypy --ignore-missing-imports --install-types --non-interactive .
20
- run: pytest . || true
0 commit comments