mango-v4/.github/workflows/ci-cargo-audit.yml

24 lines
450 B
YAML
Raw Normal View History

2022-04-08 10:43:14 -07:00
name: Cargo Audit
on:
push:
branches: master
pull_request:
jobs:
2022-04-08 10:43:14 -07:00
cargo-audit:
name: Cargo Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2022-04-08 10:43:14 -07:00
- name: Install Cargo Audit
uses: actions-rs/install@v0.1
with:
crate: cargo-audit
version: latest
2022-04-08 10:43:14 -07:00
# Run cargo audit using args from .cargo/audit.toml
- name: Run Cargo Audit
run: cargo audit -c always