1
0
Fork 0

ci(sast): target source files specifically
Some checks failed
/ sast (push) Failing after 47s

This commit is contained in:
Marc 2024-07-19 20:56:09 -04:00
parent 84637ec57f
commit b7b4e8b57b
Signed by: marc
GPG key ID: 048E042F22B5DC79

View file

@ -10,6 +10,6 @@ jobs:
- name: Install pipx - name: Install pipx
run: pip install pipx run: pip install pipx
- name: Check formatting - name: Check formatting
run: pipx run black . --check run: pipx run black **/*.py --check
- name: Check import ordering - name: Check import ordering
run: pipx run isort . --check run: pipx run isort **/*.py --check