Skip to content

Commit bf0b43c

Browse files
committed
chore: add safety security scan
1 parent eba235a commit bf0b43c

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/safety.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)