Skip to content

Commit f3f9ebd

Browse files
committed
CI: add new checks according to Makefile
1 parent 7be8625 commit f3f9ebd

1 file changed

Lines changed: 10 additions & 6 deletions

File tree

.github/workflows/action.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,14 @@ jobs:
2121
run: poetry --help
2222
- name: Run poetry install
2323
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
24+
- name: lint
25+
run: poetry run ruff check .
26+
- name: format check
27+
run: poetry run black --check .
28+
- name: sort-check
29+
run: poetry run isort --check-only .
30+
- name: test
31+
run: poetry run pytest
32+
- name: security-audit
33+
run: poetry run pip-audit
3034

0 commit comments

Comments
 (0)