Skip to content

Commit 6aad760

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

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,34 @@ 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: actions/setup-python@v5
69+
with:
70+
python-version: '3.11'
71+
cache: 'pip'
72+
73+
- uses: julia-actions/setup-julia@v3
74+
with:
75+
version: ${{ matrix.julia-version }}
76+
77+
- name: Install Python dependencies
78+
run: |
79+
python -m pip install --upgrade pip
80+
pip install -r requirements-ci.txt
81+
82+
- name: Run Julia tests
83+
run: julia --color=yes tests/julia/runtests.jl
84+
shell: bash
85+
5886
java-test:
5987
runs-on: ubuntu-latest
6088
steps:

0 commit comments

Comments
 (0)