-
Notifications
You must be signed in to change notification settings - Fork 1
34 lines (31 loc) · 896 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Run tests
on:
push:
pull_request:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.9', '1.10']
julia-arch: [x64]
os: [ubuntu-latest, macOS-latest, windows-latest]
exclude:
- os: macOS-latest
julia-arch: x86
- os: macOS-latest
julia-version: '1.10'
- os: ubuntu-latest
julia-version: '1.10'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- run: julia --project -e 'using Pkg; Pkg.add(url="https://github.com/chrisdjscott/DACE_jll.jl.git")'
shell: bash
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
# with:
# annotate: true