We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eba235a commit bf0b43cCopy full SHA for bf0b43c
1 file changed
.github/workflows/safety.yaml
@@ -0,0 +1,14 @@
1
+name: Safety Check
2
+# This workflow runs safety to check for vulnerabilities in dependencies
3
+# It runs on every push to the repository
4
+# It uses the pyupio/safety-action GitHub Action to run safety
5
+
6
+on: [push]
7
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: pyupio/safety-action@2591cf2f3e67ba68b923f4c92f0d36e281c65023 # v1.0.1
13
+ with:
14
+ api-key: ${{ secrets.SAFETY_API_KEY }}
0 commit comments