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 33d3ccb commit e927f14Copy full SHA for e927f14
1 file changed
.github/workflows/pip-audit.yml
@@ -34,8 +34,12 @@ jobs:
34
run: |
35
source /tmp/PIPAUDIT/bin/activate
36
set +e
37
- pip-audit --desc=on --progress-spinner=off -r constraints-${{ matrix.python-version }}.txt --no-deps --disable-pip -f markdown -o /tmp/report-before.md
38
- refreeze=$?
+ if [ -f constraints-${{ matrix.python-version }}.txt ] ; then
+ pip-audit --desc=on --progress-spinner=off -r constraints-${{ matrix.python-version }}.txt --no-deps --disable-pip -f markdown -o /tmp/report-before.md
39
+ refreeze=$?
40
+ else
41
+ refreeze=1
42
+ fi
43
set -e
44
45
if [ "$refreeze" != 0 ] ; then
0 commit comments