File tree Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Expand file tree Collapse file tree 1 file changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -47,15 +47,16 @@ jobs:
47
47
poetry run pip install -U "django~=${{ matrix.django-version }}"
48
48
- name : Run Static Analysis
49
49
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
54
55
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
57
58
cd ./doc
58
- poetry run doc8 --ignore-path build --max-line-length 100
59
+ doc8 --ignore-path build --max-line-length 100
59
60
60
61
- name : Run pyright
61
62
uses : jakebailey/pyright-action@v2
You can’t perform that action at this time.
0 commit comments