Skip to content

Commit 082d8f3

Browse files
committed
run tests on MSRV, for all macOS versions
1 parent c495523 commit 082d8f3

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
@@ -16,24 +16,19 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- name: Check semver
1818
uses: obi1kenobi/cargo-semver-checks-action@v2
19-
msrv:
20-
runs-on: macos-11.0
21-
steps:
22-
- uses: actions/checkout@v2
23-
- name: Install toolchain
24-
uses: actions-rs/toolchain@v1
25-
with:
26-
toolchain: 1.56.1
27-
override: true
28-
- name: Build
29-
run: cargo build --verbose
3019
build:
3120
runs-on: ${{ matrix.os }}
3221
strategy:
3322
matrix:
3423
os: [macos-11.0, macos-12, macos-13]
24+
toolchain: [stable, 1.56.1]
3525
steps:
3626
- uses: actions/checkout@v2
27+
- name: Install toolchain
28+
uses: actions-rs/toolchain@v1
29+
with:
30+
toolchain: ${{ matrix.toolchain }}
31+
override: true
3732
- name: Build
3833
run: cargo build --verbose
3934
- name: Run tests

0 commit comments

Comments
 (0)