We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d8fcd commit e7f9e1dCopy full SHA for e7f9e1d
.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,rustfmt
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