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 f7d3e18 commit 9e8a768Copy full SHA for 9e8a768
.github/workflows/ci.yml
@@ -34,6 +34,32 @@ jobs:
34
command: check
35
36
37
+ test:
38
+ name: test
39
+ runs-on: ubuntu-latest
40
+ strategy:
41
+ matrix:
42
+ rust:
43
+ - 1.60.0
44
+ - stable
45
+ - beta
46
+ # - nightly
47
+ steps:
48
+ - name: Checkout sources
49
+ uses: actions/checkout@v3
50
+ - name: Install toolchain
51
+ uses: actions-rs/toolchain@v1
52
+ with:
53
+ toolchain: ${{ matrix.rust }}
54
+ override: true
55
+ - uses: swatinem/rust-cache@v1
56
+ - name: cargo-test
57
+ uses: actions-rs/cargo@v1
58
59
+ command: test
60
+ args: --all --all-features
61
+
62
63
deny:
64
name: deny
65
runs-on: ubuntu-latest
@@ -97,6 +123,7 @@ jobs:
97
123
- deny
98
124
- fmt
99
125
- clippy
126
+ - test
100
127
101
128
steps:
102
129
- name: CI succeeded
0 commit comments