diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94793ad..b985c32 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,8 @@ jobs: # # Running `rustc` or Cargo should automatically install the toolchain specified in `rust-toolchain.toml`. - uses: Swatinem/rust-cache@v2 + - name: Run cargo audit + run: cargo audit --ignore RUSTSEC-2024-0370 --ignore RUSTSEC-2023-0071 - name: Check if code is formatted run: cargo fmt --check - name: Run Clippy @@ -25,3 +27,4 @@ jobs: run: cargo test --release --no-fail-fast - name: Check consensus-spec-tests coverage run: scripts/ci/consensus-spec-tests-coverage.rb +