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 e4747e0 commit e880916Copy full SHA for e880916
.github/workflows/safety-scan.yml
@@ -0,0 +1,14 @@
1
+name: scanning
2
+on:
3
+ push: # Run on every push to any branch
4
+ pull_request: # Run on new pull requests
5
+
6
+jobs:
7
+ security:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@main
11
+ - name: Run Safety CLI to check for vulnerabilities
12
+ uses: pyupio/safety-action@v1
13
+ with:
14
+ api-key: ${{ secrets.SAFETY_API_KEY }}
0 commit comments