File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed
Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 1414 fail-fast : false
1515 matrix :
1616 os : [ubuntu-latest, macos-latest, windows-latest]
17- rust : [nightly, stable]
17+ rust : [nightly, stable, '1.50' ]
1818 runs-on : ${{ matrix.os }}
1919 continue-on-error : ${{ matrix.rust == 'nightly' }}
2020
@@ -68,13 +68,19 @@ jobs:
6868
6969 build-linux-musl :
7070 runs-on : ubuntu-latest
71+ strategy :
72+ fail-fast : false
73+ matrix :
74+ rust : [nightly, stable, '1.50']
75+ continue-on-error : ${{ matrix.rust == 'nightly' }}
7176 steps :
7277 - uses : actions/checkout@master
7378 - name : Install Rust
7479 uses : actions-rs/toolchain@v1
7580 with :
76- toolchain : stable
81+ toolchain : ${{ matrix.rust }}
7782 profile : minimal
83+ default : true
7884 target : x86_64-unknown-linux-musl
7985 - name : Setup MUSL
8086 run : |
You can’t perform that action at this time.
0 commit comments