Skip to content

Commit 1a6c6fd

Browse files
committed
Remove nightly from CI
We do not get any benefit from running CI with the nightly toolchain. We still run it with beta, so that should catch some errors if there are any. Signed-off-by: Matthias Beyer <[email protected]>
1 parent 4148198 commit 1a6c6fd

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

.github/workflows/msrv.yml

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
- 1.70.0
1313
- stable
1414
- beta
15-
- nightly
1615

1716
steps:
1817
- name: Checkout sources
@@ -27,12 +26,6 @@ jobs:
2726
toolchain: ${{ matrix.rust }}
2827

2928
- name: Run cargo check
30-
if: matrix.rust != 'nightly'
31-
run: cargo check --all-features
32-
33-
- name: Run cargo check (nightly)
34-
if: matrix.rust == 'nightly'
35-
continue-on-error: true
3629
run: cargo check --all-features
3730

3831
test:
@@ -45,7 +38,6 @@ jobs:
4538
- 1.70.0
4639
- stable
4740
- beta
48-
- nightly
4941
steps:
5042
- name: Checkout sources
5143
uses: actions/[email protected]
@@ -59,17 +51,6 @@ jobs:
5951
toolchain: ${{ matrix.rust }}
6052

6153
- name: Run cargo test
62-
if: matrix.rust != 'nightly' && matrix.rust != '1.56.1'
63-
run: cargo test --all-features
64-
65-
- name: Run cargo test (nightly)
66-
if: matrix.rust == '1.66.0'
67-
continue-on-error: true
68-
run: cargo test --tests --all-features
69-
70-
- name: Run cargo test (nightly)
71-
if: matrix.rust == 'nightly'
72-
continue-on-error: true
7354
run: cargo test --all-features
7455

7556
fmt:

0 commit comments

Comments
 (0)