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.
2 parents 9a1c74d + 24b6031 commit f12b93fCopy full SHA for f12b93f
.github/workflows/msrv.yml
@@ -25,16 +25,12 @@ jobs:
25
26
- name: Run cargo check
27
if: matrix.rust != 'nightly'
28
- uses: actions-rs/cargo@v1
29
- with:
30
- command: check
+ run: cargo check --all-features
31
32
- name: Run cargo check (nightly)
33
if: matrix.rust == 'nightly'
34
continue-on-error: true
35
36
37
38
39
test:
40
needs: [check]
@@ -68,10 +64,7 @@ jobs:
68
64
- name: Run cargo test (nightly)
69
65
70
66
71
72
73
- command: test
74
- args: --all-features
67
+ run: cargo test --all-features
75
76
fmt:
77
0 commit comments