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 6aad760Copy full SHA for 6aad760
1 file changed
.github/workflows/ci.yml
@@ -55,6 +55,34 @@ 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: actions/setup-python@v5
69
+ with:
70
+ python-version: '3.11'
71
+ cache: 'pip'
72
73
+ - uses: julia-actions/setup-julia@v3
74
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
86
java-test:
87
runs-on: ubuntu-latest
88
steps:
0 commit comments