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 @@ -27,24 +27,19 @@ jobs:
27
27
- uses : actions/checkout@v2
28
28
- name : Check semver
29
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
30
build :
42
31
runs-on : ${{ matrix.os }}
43
32
strategy :
44
33
matrix :
45
34
os : [macos-11.0, macos-12, macos-13]
35
+ toolchain : [stable, 1.56.1]
46
36
steps :
47
37
- uses : actions/checkout@v2
38
+ - name : Install toolchain
39
+ uses : actions-rs/toolchain@v1
40
+ with :
41
+ toolchain : ${{ matrix.toolchain }}
42
+ override : true
48
43
- name : Build
49
44
run : cargo build --verbose
50
45
- name : Run tests
You can’t perform that action at this time.
0 commit comments