Skip to content

Commit 2e97439

Browse files
committed
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 <[email protected]>
1 parent d3debdb commit 2e97439

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.github/workflows/msrv.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -29,26 +29,19 @@ jobs:
2929
test:
3030
name: Test Suite
3131
runs-on: ubuntu-latest
32-
strategy:
33-
matrix:
34-
rust:
35-
- 1.70.0
36-
- 1.73.0 # stable
37-
- beta
3832
steps:
3933
- name: Checkout sources
4034
uses: actions/[email protected]
4135

4236
- name: Install toolchain
4337
uses: dtolnay/rust-toolchain@master
4438
with:
45-
toolchain: ${{ matrix.rust }}
39+
toolchain: 1.73.0
4640

4741
- name: Cache
4842
uses: Swatinem/rust-cache@v2
4943

5044
- name: Run cargo test
51-
continue-on-error: ${{ matrix.rust == 'beta' }}
5245
run: cargo test --all-features
5346

5447
fmt:

0 commit comments

Comments
 (0)