-
-
Notifications
You must be signed in to change notification settings - Fork 110
44 lines (42 loc) · 1.07 KB
/
jet.yml
File metadata and controls
44 lines (42 loc) · 1.07 KB
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
43
44
name: JET
on:
push:
branches: [master]
tags: ["*"]
pull_request:
jobs:
jet:
name: Julia ${{ matrix.version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
version:
- 'min'
- 'lts'
- '1'
# Latest JET support version
# https://github.com/aviatesk/JET.jl/blob/master/Project.toml
- '1.12'
os:
- ubuntu-latest
- macOS-latest
- windows-latest
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- name: Install JET
shell: julia --project --color=yes {0}
run: |
using Pkg
Pkg.add("JET")
- name: Run JET
shell: julia --project --color=yes {0}
run: |
using JET, Test
using SpecialFunctions
include("test/jet.jl")