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 4d96624 commit e9c227cCopy full SHA for e9c227c
1 file changed
.github/workflows/pre-commit.yml
@@ -24,3 +24,11 @@ jobs:
24
run: |
25
pip install pre-commit==3.7.0
26
pre-commit run --show-diff-on-failure --color=always --all-files
27
+ pip-audit:
28
+ runs-on: ubuntu-latest
29
+ steps:
30
+ - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
31
+ - name: Install dependencies
32
+ run: uv sync --all-groups && uv add --dev pip-audit
33
+ - name: Run pip-audit
34
+ run: uv run pip-audit # Will fail if vulnerabilities are found
0 commit comments