Skip to content

Commit 3769294

Browse files
committed
add simple CI
1 parent fac96d0 commit 3769294

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI – Loading test on nightly
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: julia-actions/setup-julia@v1
15+
with:
16+
version: 'nightly'
17+
arch: x64
18+
- uses: julia-actions/julia-buildpkg@latest
19+
- name: Loading test
20+
run: |
21+
julia --startup-file=no --project=@. -e 'using JET'

0 commit comments

Comments
 (0)