From fde32dc485dde51238ebed94fd5cde6a5689602c Mon Sep 17 00:00:00 2001 From: Jonathan LEI Date: Tue, 22 Oct 2024 23:04:08 +0800 Subject: [PATCH] ci: remove cargo-udeps workflow (#673) --- .github/workflows/udeps.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/udeps.yml diff --git a/.github/workflows/udeps.yml b/.github/workflows/udeps.yml deleted file mode 100644 index 203d0c15..00000000 --- a/.github/workflows/udeps.yml +++ /dev/null @@ -1,35 +0,0 @@ -on: - push: - branches: - - master - pull_request: - -name: Unused deps -jobs: - udeps: - runs-on: ubuntu-latest - steps: - - name: Checkout source code - uses: actions/checkout@v2 - - - name: Setup nightly toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - profile: minimal - override: true - - - uses: Swatinem/rust-cache@v1 - with: - cache-on-failure: true - - - name: Install udeps - uses: actions-rs/cargo@v1 - with: - command: install - args: cargo-udeps - - - name: Run udeps - uses: actions-rs/cargo@v1 - with: - command: udeps