Bump actions/checkout from 6 to 7 #58
Workflow file for this run
This file contains hidden or 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: Clippy check | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| clippy-check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v7 | |
| - name: Install Rust | |
| run: rustup toolchain install stable --component clippy | |
| - name: Run clippy | |
| run: cargo clippy --all-features -- -D warnings |