Skip to content

Commit

Permalink
add cargo audit into workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
blandger committed Mar 14, 2024
1 parent 41ac2bc commit 70feeae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
uses: dtolnay/rust-toolchain@stable
- name: Install epub checker
run: sudo apt-get update -y && sudo apt-get upgrade -y && sudo apt-get install -y epubcheck
# - name: Install cargo audit
# run: cargo install cargo-audit
- name: Install cargo audit
run: cargo install cargo-audit
- name: Show rust version
run: cargo --version
- name: Build
Expand All @@ -29,7 +29,7 @@ jobs:
run: cargo test --verbose
- name: Run Clippy
run: cargo clippy -- --no-deps -Dwarnings
# - name: Audit
# run: cargo audit
- name: Audit
run: cargo audit
# - name: Rust format
# run: cargo fmt --check

0 comments on commit 70feeae

Please sign in to comment.