Add workflow for cargo-audit

This commit is contained in:
Ajeet D'Souza 2020-10-01 13:22:45 +05:30
parent f230e75559
commit db0a5ffdbb

17
.github/workflows/audit.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: cargo-audit
on:
push:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
pull_request:
jobs:
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.3
- uses: actions-rs/audit-check@v1.2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}