Skip to content

Commit 2712e12

Browse files
authored
Merge pull request #275 from H1rono/remove-udeps-check
🔥 Remove `cargo-udeps` check
2 parents 6d3d223 + acd06ca commit 2712e12

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

.github/workflows/rust.yml

-16
Original file line numberDiff line numberDiff line change
@@ -69,19 +69,3 @@ jobs:
6969
with:
7070
files: target/coverage.lcov
7171
token: ${{ secrets.CODECOV_TOKEN }}
72-
73-
check-deps:
74-
runs-on: ubuntu-latest
75-
steps:
76-
- uses: actions/checkout@v4
77-
- name: Install cargo-udeps
78-
run: |
79-
export UDEPS_ASSET_NAME="cargo-udeps-v${CARGO_UDEPS_VERSION}-x86_64-unknown-linux-gnu"
80-
curl -sSL -o cargo-udeps.tar.gz https://github.com/est31/cargo-udeps/releases/download/v${CARGO_UDEPS_VERSION}/${UDEPS_ASSET_NAME}.tar.gz
81-
tar -xf cargo-udeps.tar.gz
82-
install -m 755 ${UDEPS_ASSET_NAME}/cargo-udeps /usr/local/bin/cargo-udeps
83-
rm -rf cargo-udeps.tar.gz ${UDEPS_ASSET_NAME}
84-
- name: Check udeps
85-
run: |
86-
rustup toolchain install nightly
87-
cargo +nightly udeps

0 commit comments

Comments
 (0)