summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2023-10-31 09:15:35 +0100
committerMatthias Beyer <mail@beyermatthias.de>2024-02-01 07:38:06 +0100
commitabbd836f293b451a722a60d928169205c635e60c (patch)
tree02986aa62477a9b7918725a485c2e5b727385a11
parent20f0774e39fff9ee78ab901f68678583bba49f46 (diff)
Run tests only with current stable toolchain
This saves a bit of execution time. There's no point in running MSRV and stable, because there shouldn't be a difference. So we opt for stable because it tends to be faster. Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--.github/workflows/msrv.yml9
1 files changed, 1 insertions, 8 deletions
diff --git a/.github/workflows/msrv.yml b/.github/workflows/msrv.yml
index 131ba50..336bde0 100644
--- a/.github/workflows/msrv.yml
+++ b/.github/workflows/msrv.yml
@@ -29,12 +29,6 @@ jobs:
test:
name: Test Suite
runs-on: ubuntu-latest
- strategy:
- matrix:
- rust:
- - 1.70.0
- - 1.73.0 # stable
- - beta
steps:
- name: Checkout sources
uses: actions/checkout@v4.1.1
@@ -42,13 +36,12 @@ jobs:
- name: Install toolchain
uses: dtolnay/rust-toolchain@master
with:
- toolchain: ${{ matrix.rust }}
+ toolchain: 1.73.0
- name: Cache
uses: Swatinem/rust-cache@v2
- name: Run cargo test
- continue-on-error: ${{ matrix.rust == 'beta' }}
run: cargo test --all-features
fmt: