We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72aa00a commit 62bbbdeCopy full SHA for 62bbbde
1 file changed
.github/workflows/CI.yml
@@ -16,27 +16,35 @@ jobs:
16
test:
17
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
18
runs-on: ${{ matrix.os }}
19
+ continue-on-error: ${{ matrix.experimental }}
20
strategy:
21
fail-fast: false
22
matrix:
23
version:
24
- "1.6" # LTS
25
- "1.7"
26
- "1" # Latest Release
- - nightly
27
os:
28
- ubuntu-latest
29
- macOS-latest
30
- windows-latest
31
arch:
32
- x64
33
- x86
34
+ experimental:
35
+ - false
36
exclude:
37
# Test 32-bit only on Linux
38
- os: macOS-latest
39
arch: x86
40
- os: windows-latest
41
42
+ include:
43
+ - os: ubuntu-latest
44
+ version: nightly
45
+ arch: x64
46
+ experimental: true
47
+
48
steps:
49
- name: Avoid line ending issues on Windows
50
run: git config --global core.autocrlf false
0 commit comments