We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61fc476 commit 124bec2Copy full SHA for 124bec2
1 file changed
.github/workflows/ci.yml
@@ -5,26 +5,21 @@ on:
5
6
jobs:
7
check:
8
- name: Tests
+ name: Tests (${{ matrix.rust }})
9
runs-on: ubuntu-latest
10
strategy:
11
matrix:
12
rust:
13
- stable
14
- beta
15
steps:
16
- - uses: actions/checkout@v2
17
- - uses: actions-rs/toolchain@v1
+ - uses: actions/checkout@v4
+ - uses: dtolnay/rust-toolchain@master
18
with:
19
- profile: minimal
20
toolchain: ${{ matrix.rust }}
21
- override: true
22
- - uses: actions-rs/cargo@v1
23
- with:
24
- command: test
25
- args: --all --all-features
26
27
28
29
- # Test no_std support
30
- args: -p rmp --no-default-features
+
+ - name: Test (all, all features)
+ run: cargo test --all --all-features
+ - name: Test no_std (no default features)
+ run: cargo test -p rmp --no-default-features
0 commit comments