ci/Check dependencies #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dependencies | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
pull_request: | |
types: [opened, synchronize] | |
paths: | |
- 'Cargo.toml' | |
- 'Cargo.lock' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: Run cargo-audit | |
uses: actions-rs/audit-check@v1 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Rust stable | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- name: Install cargo-deny | |
env: | |
DENY_LINK: https://github.com/EmbarkStudios/cargo-deny/releases/download | |
DENY_VERSION: 0.14.3 | |
run: | | |
curl -L "$DENY_LINK/$DENY_VERSION/cargo-deny-$DENY_VERSION-x86_64-unknown-linux-musl.tar.gz" | | |
tar xz -C $HOME/.cargo/bin --strip-components 1 | |
- name: Run cargo-deny | |
run: | | |
cargo deny init | |
cargo deny check bans | |
- name: Install Rust nightly | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
toolchain: nightly | |
components: rustfmt | |
- name: Install cargo-udeps | |
env: | |
UDEPS_LINK: https://github.com/est31/cargo-udeps/releases/download | |
UDEPS_VERSION: v0.1.43 | |
run: | | |
curl -L "$UDEPS_LINK/$UDEPS_VERSION/cargo-udeps-$UDEPS_VERSION-x86_64-unknown-linux-gnu.tar.gz" | | |
tar xz -C $HOME/.cargo/bin --strip-components 2 | |
- name: Run cargo-udeps | |
run: | | |
cargo +nightly udeps --all-targets |