Skip to content

Commit fdf4460

Browse files
committed
run tests on MSRV, for all macOS versions
1 parent b009c87 commit fdf4460

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/workflows/rust.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,24 +27,19 @@ jobs:
2727
- uses: actions/checkout@v2
2828
- name: Check semver
2929
uses: obi1kenobi/cargo-semver-checks-action@v2
30-
msrv:
31-
runs-on: macos-11.0
32-
steps:
33-
- uses: actions/checkout@v2
34-
- name: Install toolchain
35-
uses: actions-rs/toolchain@v1
36-
with:
37-
toolchain: 1.56.1
38-
override: true
39-
- name: Build
40-
run: cargo build --verbose
4130
build:
4231
runs-on: ${{ matrix.os }}
4332
strategy:
4433
matrix:
4534
os: [macos-11.0, macos-12, macos-13]
35+
toolchain: [stable, 1.56.1]
4636
steps:
4737
- uses: actions/checkout@v2
38+
- name: Install toolchain
39+
uses: actions-rs/toolchain@v1
40+
with:
41+
toolchain: ${{ matrix.toolchain }}
42+
override: true
4843
- name: Build
4944
run: cargo build --verbose
5045
- name: Run tests

0 commit comments

Comments
 (0)