File tree 2 files changed +45
-8
lines changed
2 files changed +45
-8
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+ on :
3
+ pull_request :
4
+ push :
5
+ branches :
6
+ - master
7
+ tags : ["*"]
8
+ jobs :
9
+ test :
10
+ name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ version :
16
+ - ' 1.0'
17
+ - ' 1.1'
18
+ - ' 1.6'
19
+ - ' 1.9'
20
+ - ' 1.10'
21
+ - ' 1.11'
22
+ os :
23
+ - ubuntu-latest
24
+ arch :
25
+ - x64
26
+ env :
27
+ PYTHON : " "
28
+ steps :
29
+ - uses : actions/checkout@v4
30
+ - uses : julia-actions/setup-julia@v2
31
+ with :
32
+ version : ${{ matrix.version }}
33
+ arch : ${{ matrix.arch }}
34
+ - uses : actions/cache@v4
35
+ env :
36
+ cache-name : cache-artifacts
37
+ with :
38
+ path : ~/.julia/artifacts
39
+ key : ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
40
+ restore-keys : |
41
+ ${{ runner.os }}-test-${{ env.cache-name }}-
42
+ ${{ runner.os }}-test-
43
+ ${{ runner.os }}-
44
+ - uses : julia-actions/julia-buildpkg@v1
45
+ - uses : julia-actions/julia-runtest@v1
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments