Skip to content

Commit 84a18ff

Browse files
authored
Add a Julia 1.10 job to CI (#47)
1 parent 6fac768 commit 84a18ff

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,18 @@ permissions:
1717
contents: read
1818
jobs:
1919
test:
20-
name: Julia ${{ matrix.machine.version }} - ${{ matrix.machine.os }}-${{ matrix.machine.arch }}
21-
runs-on: ${{ matrix.machine.os }}
20+
name: Julia ${{ matrix.version }} - ${{ matrix.os }}-${{ matrix.arch }}
21+
runs-on: ${{ matrix.os }}
2222
strategy:
2323
fail-fast: false
2424
matrix:
25-
machine:
25+
include:
2626
- version: 'nightly'
2727
os: ubuntu-latest
2828
arch: x64
29+
- version: '1.10'
30+
os: ubuntu-latest
31+
arch: x64
2932
- version: '1'
3033
os: ubuntu-latest
3134
arch: x64
@@ -39,8 +42,8 @@ jobs:
3942
- uses: actions/checkout@v4
4043
- uses: julia-actions/setup-julia@v2
4144
with:
42-
version: ${{ matrix.machine.version }}
43-
arch: ${{ matrix.machine.arch }}
45+
version: ${{ matrix.version }}
46+
arch: ${{ matrix.arch }}
4447
- uses: julia-actions/cache@v1
4548
- uses: julia-actions/julia-buildpkg@v1
4649
- uses: julia-actions/julia-runtest@v1

0 commit comments

Comments
 (0)