Feature/quadratic #158
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cargo Audit | |
on: | |
push: | |
branches: master | |
pull_request: | |
branches: master | |
jobs: | |
cargo-audit: | |
name: Cargo Audit | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Cargo Audit | |
uses: actions-rs/install@v0.1 | |
with: | |
crate: cargo-audit | |
version: latest | |
# Run cargo audit using args from .cargo/audit.toml | |
- name: Run Cargo Audit | |
run: cargo audit -c always |