fix: use bash for pip-audit step

This commit is contained in:
thePR0M3TH3AN
2025-08-06 17:36:27 -04:00
parent af53e7f12c
commit 979ba6f678

View File

@@ -26,9 +26,8 @@ jobs:
run: poetry run black --check .
- name: Run security audit
run: |
if ! poetry run pip-audit; then
echo "::warning::pip-audit found vulnerabilities"
fi
poetry run pip-audit || echo "::warning::pip-audit found vulnerabilities"
shell: bash
- name: Run tests with coverage
run: |
poetry run coverage run -m pytest