Skip to content

Commit

Permalink
explicitly use rust 1.74.0 in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-hunt-materialize committed Feb 15, 2024
1 parent 7d0563e commit 6eb9658
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,28 @@ jobs:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: 1.74.0
components: rustfmt, clippy
- uses: Swatinem/[email protected]
- uses: actions-rs/cargo@v1
with:
command: fmt
toolchain: 1.74.0
args: -- --check
- uses: actions-rs/cargo@v1
with:
command: clippy
toolchain: 1.74.0
args: -- --deny warnings
- uses: actions-rs/cargo@v1
with:
command: install
toolchain: 1.74.0
args: --locked cargo-deny
- uses: actions-rs/cargo@v1
with:
command: deny
toolchain: 1.74.0
args: check
test:
runs-on: ubuntu-20.04
Expand Down

0 comments on commit 6eb9658

Please sign in to comment.