We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 917812d commit 17d203bCopy full SHA for 17d203b
1 file changed
.github/workflows/safety-check.yaml
@@ -0,0 +1,20 @@
1
+name: Security Scan
2
+on:
3
+ push:
4
+# schedule:
5
+# - cron: '0 0 * * 0' # Weekly
6
+jobs:
7
+ scan:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - uses: actions/checkout@v3
11
+
12
+ - uses: actions/setup-python@v4
13
+ with:
14
+ python-version: '3.11'
15
16
+ - name: Install Safety
17
+ run: pip install safety
18
19
+ - name: Run Safety Scan
20
+ run: safety check --full-report
0 commit comments