We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c495523 commit 082d8f3Copy full SHA for 082d8f3
.github/workflows/rust.yml
@@ -16,24 +16,19 @@ jobs:
16
- uses: actions/checkout@v2
17
- name: Check semver
18
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
30
build:
31
runs-on: ${{ matrix.os }}
32
strategy:
33
matrix:
34
os: [macos-11.0, macos-12, macos-13]
+ toolchain: [stable, 1.56.1]
35
steps:
36
+ - name: Install toolchain
+ uses: actions-rs/toolchain@v1
+ with:
+ toolchain: ${{ matrix.toolchain }}
+ override: true
37
- name: Build
38
run: cargo build --verbose
39
- name: Run tests
0 commit comments