Skip to content

Commit

Permalink
ci: don't run cargo-udeps
Browse files Browse the repository at this point in the history
Even the latest version of `cargo-udeps` relies on openssl 1.1 which is not included by default in Ubuntu 24.04. The alternative is downloading and installing openssl 1.1, but that's too much.
  • Loading branch information
plusvic committed Dec 20, 2024
1 parent 399e0a6 commit 4d59017
Showing 1 changed file with 1 addition and 17 deletions.
18 changes: 1 addition & 17 deletions .github/workflows/code_health.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,4 @@ jobs:
- uses: dtolnay/rust-toolchain@1.78.0
with:
components: rustfmt
- run: cargo fmt --all --check

udeps:
name: Unused dependencies
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install nightly toolchain
uses: dtolnay/rust-toolchain@nightly

- name: Run cargo-udeps
uses: aig787/cargo-udeps-action@v1
with:
version: v0.1.53
args: '--all-targets'
- run: cargo fmt --all --check

0 comments on commit 4d59017

Please sign in to comment.