File tree 2 files changed +7
-6
lines changed
2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 9
9
10
10
jobs :
11
11
build_and_test :
12
- name : Build and test on ${{ matrix.os }}
12
+ name : Build and test
13
13
runs-on : ${{ matrix.os }}
14
14
strategy :
15
15
matrix :
16
16
os : [ubuntu-latest, windows-latest, macOS-latest]
17
+ rust : [nightly]
17
18
18
19
steps :
19
20
- uses : actions/checkout@master
20
21
21
- - name : Install nightly
22
+ - name : Install ${{ matrix.rust }}
22
23
uses : actions-rs/toolchain@v1
23
24
with :
24
- toolchain : nightly
25
+ toolchain : ${{ matrix.rust }}
25
26
override : true
26
27
27
28
- name : check
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ status = [
2
2
# Travis CI
3
3
" continuous-integration/travis-ci/push" ,
4
4
# GitHub Actions
5
- " Build and test on ubuntu-latest" ,
6
- " Build and test on windows-latest" ,
7
- " Build and test on macOS-latest" ,
5
+ " Build and test ( ubuntu-latest, nightly) " ,
6
+ " Build and test ( windows-latest, nightly) " ,
7
+ " Build and test ( macOS-latest, nightly) " ,
8
8
" Checking fmt and docs" ,
9
9
" Clippy check" ,
10
10
]
You can’t perform that action at this time.
0 commit comments