-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (35 loc) · 806 Bytes
/
ci.yml
File metadata and controls
42 lines (35 loc) · 806 Bytes
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
35
36
37
38
39
40
41
42
name: CI
on:
push:
branches: [main]
pull_request:
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- '1.12'
os:
- ubuntu-latest
- macos-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: actions/setup-node@v4
with:
node-version: '22'
- uses: julia-actions/cache@v2
- name: Install dependencies
run: |
julia --project=. -e '
using Pkg
Pkg.instantiate()
'
- name: Run tests
run: |
julia --project=. test/runtests.jl