File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -16,27 +16,35 @@ jobs:
1616 test :
1717 name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
1818 runs-on : ${{ matrix.os }}
19+ continue-on-error : ${{ matrix.experimental }}
1920 strategy :
2021 fail-fast : false
2122 matrix :
2223 version :
2324 - " 1.6" # LTS
2425 - " 1.7"
2526 - " 1" # Latest Release
26- - nightly
2727 os :
2828 - ubuntu-latest
2929 - macOS-latest
3030 - windows-latest
3131 arch :
3232 - x64
3333 - x86
34+ experimental :
35+ - false
3436 exclude :
3537 # Test 32-bit only on Linux
3638 - os : macOS-latest
3739 arch : x86
3840 - os : windows-latest
3941 arch : x86
42+ include :
43+ - os : ubuntu-latest
44+ version : nightly
45+ arch : x64
46+ experimental : true
47+
4048 steps :
4149 - name : Avoid line ending issues on Windows
4250 run : git config --global core.autocrlf false
You can’t perform that action at this time.
0 commit comments