We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f240a8b commit 36fd433Copy full SHA for 36fd433
.github/workflows/pr-review.yml
@@ -146,7 +146,10 @@ jobs:
146
pip install -e .
147
148
- name: Run pip-audit
149
- run: pip-audit --strict --skip-editable
+ run: |
150
+ # Generate requirements excluding editable installs, then audit
151
+ pip freeze --exclude-editable > /tmp/requirements.txt
152
+ pip-audit --strict -r /tmp/requirements.txt
153
154
# ============================================
155
# Unit Tests with Pytest
0 commit comments