summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/msrv.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index fcbe122..1df22cb 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -26,6 +26,7 @@ jobs:
toolchain: ${{ matrix.rust }}
- name: Run cargo check
+ continue-on-error: ${{ matrix.rust == 'beta' }}
run: cargo check --all-features
test:
@@ -51,6 +52,7 @@ jobs:
toolchain: ${{ matrix.rust }}
- name: Run cargo test
+ continue-on-error: ${{ matrix.rust == 'beta' }}
run: cargo test --all-features
fmt:
@@ -73,6 +75,7 @@ jobs:
components: rustfmt
- name: Run cargo fmt
+ continue-on-error: ${{ matrix.rust == 'beta' }}
run: cargo fmt --all -- --check
clippy: