File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -16,24 +16,19 @@ jobs:
16
16
- uses : actions/checkout@v2
17
17
- name : Check semver
18
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
19
build :
31
20
runs-on : ${{ matrix.os }}
32
21
strategy :
33
22
matrix :
34
23
os : [macos-11.0, macos-12, macos-13]
24
+ toolchain : [stable, 1.56.1]
35
25
steps :
36
26
- uses : actions/checkout@v2
27
+ - name : Install toolchain
28
+ uses : actions-rs/toolchain@v1
29
+ with :
30
+ toolchain : ${{ matrix.toolchain }}
31
+ override : true
37
32
- name : Build
38
33
run : cargo build --verbose
39
34
- name : Run tests
You can’t perform that action at this time.
0 commit comments