-
Notifications
You must be signed in to change notification settings - Fork 29
37 lines (34 loc) · 872 Bytes
/
ci.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
35
36
37
name: CI
on:
pull_request:
push:
tags:
- v*
workflow_dispatch:
jobs:
julia-lts:
name: Julia LTS
runs-on: ubuntu-latest
steps:
- run: sudo apt-get -y install gnuplot
- uses: julia-actions/setup-julia@latest
with:
version: 1.6
arch: x64
- uses: actions/checkout@v3
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest
julia-stable:
name: Julia Stable
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: sudo apt-get -y install gnuplot
- uses: julia-actions/setup-julia@latest
with:
version: 1
arch: x64
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest