This commit is contained in:
Jordan Doyle 2022-03-14 22:51:26 +00:00
parent e6642a7a94
commit 3defb20ad0
No known key found for this signature in database
GPG key ID: 1EA6BAE6F66DC49A
4 changed files with 104 additions and 0 deletions

16
.github/workflows/audit.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: Security audit
on:
push:
paths:
- '**/Cargo.toml'
- '**/Cargo.lock'
jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}