We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bef295 commit fb68a3cCopy full SHA for fb68a3c
1 file changed
.github/workflows/ci.yml
@@ -55,6 +55,24 @@ jobs:
55
--ignore=ratc/ \
56
--ignore=linktest/
57
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
76
java-test:
77
runs-on: ubuntu-latest
78
steps:
0 commit comments