Skip to content

Commit 25a81f3

Browse files
Create security-checks.yml (#30)
* Create security-checks.yml * rename audit job
1 parent b55e9bb commit 25a81f3

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Rust Security Checks
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
branches:
9+
- master
10+
schedule:
11+
- cron: '0 3 * * 1'
12+
13+
jobs:
14+
cargo_audit:
15+
runs-on: ubuntu-latest
16+
steps:
17+
- uses: actions/checkout@v4
18+
- name: Run Cargo Audit
19+
run: cargo audit
20+
continue-on-error: true

0 commit comments

Comments
 (0)