From abbd836f293b451a722a60d928169205c635e60c Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 31 Oct 2023 09:15:35 +0100 Subject: 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 --- .github/workflows/msrv.yml | 9 +-------- 1 file changed, 1 insertion(+), 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: -- cgit v1.2.3