From bdd05549695aefd489374322e12736cc341550b0 Mon Sep 17 00:00:00 2001 From: Saulius Grigaitis Date: Tue, 10 Sep 2024 10:21:14 +0300 Subject: [PATCH] Updated Github workflows CI file --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94793adb..b985c321 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 +