File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed
Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 test :
12+ name : Test
1213 runs-on : ubuntu-latest
14+ strategy :
15+ matrix :
16+ toolchain :
17+ - 1.85.0 # MSRV
18+ - stable
1319 steps :
14- - uses : actions/checkout@v6
20+ - name : Checkout
21+ uses : actions/checkout@v6
22+ - name : Install Rust
23+ uses : actions-rust-lang/setup-rust-toolchain@v1
24+ with :
25+ toolchain : ${{ matrix.toolchain }}
26+ cache : true
1527 - name : Check features
1628 run : |
1729 cargo check --no-default-features
2234 run : cargo test --no-fail-fast
2335
2436 lint :
37+ name : Lint
2538 runs-on : ubuntu-latest
2639 steps :
27- - uses : actions/checkout@v6
40+ - name : Checkout
41+ uses : actions/checkout@v6
42+ - name : Install Rust
43+ uses : actions-rust-lang/setup-rust-toolchain@v1
44+ with :
45+ toolchain : stable
46+ cache : true
2847 - name : Rustfmt
2948 run : cargo fmt --all --check
3049 - name : Lint
You can’t perform that action at this time.
0 commit comments