diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2fd4b2612..2ddf4943b 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -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 @@ -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