summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-06-08 22:15:40 +0200
committerGitHub <noreply@github.com>2021-06-08 22:15:40 +0200
commitdccc08a22cb2d1b53d823e217fd3c6a86b80e366 (patch)
tree5c4f4b9b8ea195b770033537f83cdee130646ad5
parent866ffad2b8766270df00cd7e3ab5387acb1b53a6 (diff)
parent123e3ee41f4676e1d989a1fbbda610a794d9d3fa (diff)
Merge pull request #211 from matthiasbeyer/continue-on-error-on-nightly
On nightly, ignore errors
-rw-r--r--.github/workflows/msrv.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index b2f67e2..1cbbaff 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -24,6 +24,14 @@ jobs:
override: true
- name: Run cargo check
+ if: matrix.rust != 'nightly'
+ uses: actions-rs/cargo@v1
+ with:
+ command: check
+
+ - name: Run cargo check (nightly)
+ if: matrix.rust == 'nightly'
+ continue-on-error: true
uses: actions-rs/cargo@v1
with:
command: check
@@ -49,6 +57,14 @@ jobs:
override: true
- name: Run cargo test
+ if: matrix.rust != 'nightly'
+ uses: actions-rs/cargo@v1
+ with:
+ command: test
+
+ - name: Run cargo test (nightly)
+ if: matrix.rust == 'nightly'
+ continue-on-error: true
uses: actions-rs/cargo@v1
with:
command: test