Skip to content

Commit 9b82de0

Browse files
authored
Create rust-audit-check.yml
1 parent a3e4a2d commit 9b82de0

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Diff for: .github/workflows/rust-audit-check.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Security audit
2+
on:
3+
push:
4+
paths:
5+
- '**/Cargo.toml'
6+
- '**/Cargo.lock'
7+
jobs:
8+
security_audit:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions-rs/audit-check@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)