We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1839d73 commit 8466c5dCopy full SHA for 8466c5d
.github/workflows/rust.yml
@@ -19,14 +19,16 @@ jobs:
19
runs-on: ${{ matrix.os }}
20
steps:
21
- uses: actions/checkout@v4
22
- - name: Install Rust
23
- uses: dtolnay/rust-toolchain@master
+ - name: Set up Rust
+ uses: moonrepo/setup-rust@v1
24
with:
25
- toolchain: ${{ matrix.rustv }}
26
- components: clippy, rustfmt
27
- - uses: swatinem/rust-cache@v2
+ channel: ${{ matrix.rustv }}
+ bins: cargo-nextest
+ components: clippy
28
+ env:
29
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
- name: Test
- run: cargo test
31
+ run: cargo nextest run
32
- name: Clippy
33
run: cargo clippy -- -Dwarnings
34
- name: fmt
0 commit comments