From 2929b4f980eee1f285d97d65336b42baf4a3774e Mon Sep 17 00:00:00 2001 From: Adam Naji <110662505+Bashamega@users.noreply.github.com> Date: Wed, 11 Jun 2025 11:50:00 +0300 Subject: [PATCH] chore: run cargo audit --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a4c7a2d..1f5c706 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,5 +60,11 @@ jobs: - name: Test in release mode run: cargo test --release --all --verbose + - name: Install cargo-audit + run: cargo install cargo-audit --deny warnings + + - name: Run cargo audit + run: cargo audit + - name: Run all examples run: ./run-all-examples.sh