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 866ffad + 123e3ee commit dccc08aCopy full SHA for dccc08a
.github/workflows/msrv.yml
@@ -24,6 +24,14 @@ jobs:
24
override: true
25
26
- name: Run cargo check
27
+ if: matrix.rust != 'nightly'
28
+ uses: actions-rs/cargo@v1
29
+ with:
30
+ command: check
31
+
32
+ - name: Run cargo check (nightly)
33
+ if: matrix.rust == 'nightly'
34
+ continue-on-error: true
35
uses: actions-rs/cargo@v1
36
with:
37
command: check
@@ -49,6 +57,14 @@ jobs:
49
57
50
58
51
59
- name: Run cargo test
60
61
62
63
+ command: test
64
65
+ - name: Run cargo test (nightly)
66
67
52
68
53
69
54
70
command: test
0 commit comments