Make upload artifact and download artifact use the same action version #305
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: clippy | |
on: [push, pull_request] | |
jobs: | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
with: | |
toolchain: stable | |
components: clippy | |
override: true | |
- uses: clechasseur/rs-clippy-check@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- run: cargo clippy -- -D warnings |