Skip to content

Commit 0e2c866

Browse files
committed
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 <[email protected]>
1 parent 47af095 commit 0e2c866

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/msrv.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ jobs:
2626
toolchain: ${{ matrix.rust }}
2727

2828
- name: Run cargo check
29+
continue-on-error: ${{ matrix.rust == 'beta' }}
2930
run: cargo check --all-features
3031

3132
test:
@@ -51,6 +52,7 @@ jobs:
5152
toolchain: ${{ matrix.rust }}
5253

5354
- name: Run cargo test
55+
continue-on-error: ${{ matrix.rust == 'beta' }}
5456
run: cargo test --all-features
5557

5658
fmt:
@@ -73,6 +75,7 @@ jobs:
7375
components: rustfmt
7476

7577
- name: Run cargo fmt
78+
continue-on-error: ${{ matrix.rust == 'beta' }}
7679
run: cargo fmt --all -- --check
7780

7881
clippy:

0 commit comments

Comments
 (0)