File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 99
1010jobs :
1111 build_and_test :
12- name : Build and test on ${{ matrix.os }}
12+ name : Build and test
1313 runs-on : ${{ matrix.os }}
1414 strategy :
1515 matrix :
1616 os : [ubuntu-latest, windows-latest, macOS-latest]
17+ rust : [nightly]
1718
1819 steps :
1920 - uses : actions/checkout@master
2021
21- - name : Install nightly
22+ - name : Install ${{ matrix.rust }}
2223 uses : actions-rs/toolchain@v1
2324 with :
24- toolchain : nightly
25+ toolchain : ${{ matrix.rust }}
2526 override : true
2627
2728 - name : check
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ status = [
22 # Travis CI
33 " continuous-integration/travis-ci/push" ,
44 # 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) " ,
88 " Checking fmt and docs" ,
99 " Clippy check" ,
1010]
You can’t perform that action at this time.
0 commit comments