Skip to content

Commit 03e57e0

Browse files
committed
add jl_test workflow
to run the Julia `] test` on multiple Julia versions.
1 parent f0606e0 commit 03e57e0

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/jl_test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Run Julia tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
strategy:
9+
fail-fast: false
10+
matrix:
11+
jl_version: ["1.3", "1.6", "1.8"]
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: julia-actions/setup-julia@v1
15+
with:
16+
version: ${{ matrix.jl_version }}
17+
- uses: julia-actions/julia-buildpkg@v1
18+
- uses: julia-actions/julia-runtest@v1
19+
with:
20+
annotate: true

0 commit comments

Comments
 (0)