Skip to content

Commit c8ff946

Browse files
committed
try fix linting CI
1 parent 31cfb70 commit c8ff946

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

.github/workflows/lint.yml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,16 @@ jobs:
4747
poetry run pip install -U "django~=${{ matrix.django-version }}"
4848
- name: Run Static Analysis
4949
run: |
50-
poetry run isort django_typer --check
51-
poetry run black django_typer --check
52-
poetry run pylint django_typer
53-
poetry run mypy django_typer
50+
source .venv/bin/activate
51+
isort django_typer --check
52+
black django_typer --check
53+
pylint django_typer
54+
mypy django_typer
5455
poetry check
55-
poetry run pip check
56-
poetry run python -m readme_renderer ./README.rst -o /tmp/README.html
56+
pip check
57+
python -m readme_renderer ./README.rst -o /tmp/README.html
5758
cd ./doc
58-
poetry run doc8 --ignore-path build --max-line-length 100
59+
doc8 --ignore-path build --max-line-length 100
5960
6061
- name: Run pyright
6162
uses: jakebailey/pyright-action@v2

0 commit comments

Comments
 (0)