Added workflow
This commit is contained in:
parent
d06c4e27e6
commit
9edf5d1dd7
1 changed files with 15 additions and 0 deletions
15
.github/workflows/rust-sec.yml
vendored
Normal file
15
.github/workflows/rust-sec.yml
vendored
Normal file
|
@ -0,0 +1,15 @@
|
|||
name: Security audit
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- "*"
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
jobs:
|
||||
security_audit:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: actions-rs/audit-check@v1
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
Loading…
Reference in a new issue