Skip to content

Commit c1aad4f

Browse files
authored
Add CI on Julia 1.9 and fix Ubuntu builds for unsupported versions (#313)
* Add CI on Julia 1.9 and fix Ubuntu builds for unsupported versions * Remove ubuntu-latest duplicate * New attempt at CI.yml action syntax
1 parent e0f33f1 commit c1aad4f

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

.github/workflows/CI.yml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,23 @@ jobs:
1616
matrix:
1717
version:
1818
- '1.0'
19-
- '1.5'
2019
- '1.6'
21-
- '1.7'
22-
- '1.8'
20+
- '1.9'
2321
- 'nightly'
24-
os:
25-
- ubuntu-latest
2622
arch:
2723
- x64
24+
os:
25+
- ubuntu-latest
26+
include:
27+
- version: '1.5'
28+
arch: x64
29+
os: ubuntu-20.04
30+
- version: '1.7'
31+
arch: x64
32+
os: ubuntu-20.04
33+
- version: '1.8'
34+
arch: x64
35+
os: ubuntu-22.04
2836
steps:
2937
- uses: actions/checkout@v3
3038
- uses: julia-actions/setup-julia@v1

0 commit comments

Comments
 (0)