From 7f5c6ceeef5606aa73591f03cb8ccd213a4907fc Mon Sep 17 00:00:00 2001 From: extrawurst <776816+extrawurst@users.noreply.github.com> Date: Sun, 5 Feb 2023 10:32:25 +0100 Subject: [PATCH] Check udeps (#1535) --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 04621089..c35bf653 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -190,6 +190,23 @@ jobs: run: | cargo deny check bans + udeps: + name: udeps + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Install Rust + uses: actions-rs/toolchain@v1 + with: + toolchain: nightly + override: true + + - name: cargo-udeps + run: | + cargo install --locked cargo-udeps + cargo +nightly udeps --all-targets + + sec: name: Security audit runs-on: ubuntu-latest