summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-10-26 13:57:39 +0200
committerMatthias Beyer <mail@beyermatthias.de>2024-02-01 07:38:06 +0100
commit1a6c6fdc05a15e44d97f5f1ff87111355fc473da (patch)
treebbd89c7b07c6e3923ddb1b84a4ebf5d47ece8abf
parent4148198064f2e45d68736599d379fa6c1a818966 (diff)
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 <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml19
1 files changed, 0 insertions, 19 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 3022bf0..465aa9a 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -12,7 +12,6 @@ jobs:
- 1.70.0
- stable
- beta
- - nightly
steps:
- name: Checkout sources
@@ -27,12 +26,6 @@ jobs:
toolchain: ${{ matrix.rust }}
- name: Run cargo check
- if: matrix.rust != 'nightly'
- run: cargo check --all-features
-
- - name: Run cargo check (nightly)
- if: matrix.rust == 'nightly'
- continue-on-error: true
run: cargo check --all-features
test:
@@ -45,7 +38,6 @@ jobs:
- 1.70.0
- stable
- beta
- - nightly
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
@@ -59,17 +51,6 @@ jobs:
toolchain: ${{ matrix.rust }}
- name: Run cargo test
- if: matrix.rust != 'nightly' && matrix.rust != '1.56.1'
- run: cargo test --all-features
-
- - name: Run cargo test (nightly)
- if: matrix.rust == '1.66.0'
- continue-on-error: true
- run: cargo test --tests --all-features
-
- - name: Run cargo test (nightly)
- if: matrix.rust == 'nightly'
- continue-on-error: true
run: cargo test --all-features
fmt: