We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 260b166 commit c087607Copy full SHA for c087607
1 file changed
.github/workflows/python-ci.yml
@@ -57,12 +57,13 @@ jobs:
57
run: python -m pytest -v app_python/tests
58
59
- name: Snyk security scan
60
- if: matrix.python-version == '3.12' && github.event_name == 'push' && secrets.SNYK_TOKEN != ''
+ if: matrix.python-version == '3.12' && github.event_name == 'push'
61
uses: snyk/actions/python@v3
62
env:
63
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
64
with:
65
args: --severity-threshold=high --file=app_python/requirements.txt
66
+ continue-on-error: true
67
68
docker-build-push:
69
name: Build and push Docker image
0 commit comments