We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7be8625 commit f3f9ebdCopy full SHA for f3f9ebd
1 file changed
.github/workflows/action.yml
@@ -21,10 +21,14 @@ jobs:
21
run: poetry --help
22
- name: Run poetry install
23
run: poetry install
24
- - name: Run tests
25
- run: poetry run pytest tests
26
- - name: Run black
27
- run: poetry run black l9format/*.py tests/*.py --check
28
- - name: Run poetry build
29
- run: poetry build
+ - name: lint
+ run: poetry run ruff check .
+ - name: format check
+ run: poetry run black --check .
+ - name: sort-check
+ run: poetry run isort --check-only .
30
+ - name: test
31
+ run: poetry run pytest
32
+ - name: security-audit
33
+ run: poetry run pip-audit
34
0 commit comments