We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b009c87 commit fdf4460Copy full SHA for fdf4460
.github/workflows/rust.yml
@@ -27,24 +27,19 @@ jobs:
27
- uses: actions/checkout@v2
28
- name: Check semver
29
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
41
build:
42
runs-on: ${{ matrix.os }}
43
strategy:
44
matrix:
45
os: [macos-11.0, macos-12, macos-13]
+ toolchain: [stable, 1.56.1]
46
steps:
47
+ - name: Install toolchain
+ uses: actions-rs/toolchain@v1
+ with:
+ toolchain: ${{ matrix.toolchain }}
+ override: true
48
- name: Build
49
run: cargo build --verbose
50
- name: Run tests
0 commit comments