Skip to content

Commit fb68a3c

Browse files
committed
ci: add Julia test matrix
1 parent 3bef295 commit fb68a3c

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,24 @@ jobs:
5555
--ignore=ratc/ \
5656
--ignore=linktest/
5757
58+
julia-test:
59+
runs-on: ${{ matrix.os }}
60+
strategy:
61+
matrix:
62+
os: [ubuntu-latest, windows-latest]
63+
julia-version: ['1.10', '1']
64+
65+
steps:
66+
- uses: actions/checkout@v4
67+
68+
- uses: julia-actions/setup-julia@v3
69+
with:
70+
version: ${{ matrix.julia-version }}
71+
72+
- name: Run Julia tests
73+
run: julia --color=yes tests/julia/runtests.jl
74+
shell: bash
75+
5876
java-test:
5977
runs-on: ubuntu-latest
6078
steps:

0 commit comments

Comments
 (0)