Fix machete action #83
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: Cargo Machete | |
on: | |
push: | |
branches: | |
- "main" | |
pull_request: | |
types: [opened, synchronize] | |
jobs: | |
cargo-machete: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: dtolnay/rust-toolchain@master | |
with: | |
toolchain: 1.85 | |
# Install with 1.85 | |
- name: Machete install | |
run: cargo install cargo-machete --locked | |
# Checkout will downgrade to 1.81 | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Machete Check | |
run: cargo machete |