summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-10-26 14:03:23 +0200
committerMatthias Beyer <mail@beyermatthias.de>2024-02-01 07:38:06 +0100
commit0e2c8668e2872269902672df80048209d817aa0b (patch)
tree830e1b877e8c72b86d8e2e2611813171a02806b3
parent47af0957eca221989859dabd972e302c92dd48e5 (diff)
Do not allow changing rust toolchain breaking our CI
Same as with the mutable "stable" being removed from our CI, we run beta toolchain CI stuff, but we should no longer allow a changing beta version break our CI "randomly". Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-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: