add snazzy to list of known terminals #7
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: Audit for vulnerabilities | |
on: | |
push: | |
branches: ["master"] | |
pull_request: | |
branches: ["master"] | |
jobs: | |
audit: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout | |
- uses: actions/checkout@v3 | |
with: | |
repository: LivacoNew/CrabFetch | |
ref: master | |
path: CrabFetch | |
# Setup Rust & Cargo's Cache | |
- uses: dtolnay/rust-toolchain@stable | |
- uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: CrabFetch | |
# Install cargo audit | |
- name: Install Cargo Audit | |
run: | | |
cargo install cargo-audit --locked | |
# Run it | |
- name: cargo audit | |
run: | | |
cd CrabFetch | |
cargo audit |