File tree Expand file tree Collapse file tree 2 files changed +29
-17
lines changed Expand file tree Collapse file tree 2 files changed +29
-17
lines changed Original file line number Diff line number Diff line change 11
11
JULIA_NUM_THREADS : 2
12
12
jobs :
13
13
test :
14
- name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
14
+ name : Julia ${{ matrix.julia- version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
15
15
runs-on : ${{ matrix.os }}
16
16
strategy :
17
17
fail-fast : false
18
18
matrix :
19
- version :
20
- - ' nightly'
19
+ julia- version :
20
+ - " nightly"
21
21
os :
22
22
- ubuntu-latest
23
- arch :
23
+ - macos-latest
24
+ - windows-latest
25
+ julia-arch :
24
26
- x64
27
+ exclude :
28
+ - os : macOS-latest
29
+ julia-arch : x86
25
30
steps :
26
31
- uses : actions/checkout@v4
27
- - uses : julia-actions/setup-julia@v1
32
+ - uses : julia-actions/setup-julia@v2
28
33
with :
29
- version : ${{ matrix.version }}
30
- arch : ${{ matrix.arch }}
31
- - uses : actions/cache@v1
34
+ version : ${{ matrix.julia- version }}
35
+ arch : ${{ matrix.julia- arch }}
36
+ - uses : actions/cache@v4
32
37
env :
33
38
cache-name : cache-artifacts
34
39
with :
45
50
with :
46
51
token : ${{ secrets.CODECOV_TOKEN }}
47
52
fail_ci_if_error : false
53
+ file : lcov.info
Original file line number Diff line number Diff line change 11
11
JULIA_NUM_THREADS : 2
12
12
jobs :
13
13
test :
14
- name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
14
+ name : Julia ${{ matrix.julia- version }} - ${{ matrix.os }} - ${{ matrix.julia-arch }}
15
15
runs-on : ${{ matrix.os }}
16
16
strategy :
17
17
fail-fast : false
18
18
matrix :
19
- version :
20
- - ' 1.9' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
21
- - ' 1 ' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
19
+ julia- version :
20
+ - " 1.9"
21
+ - " 1 " # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia
22
22
os :
23
23
- ubuntu-latest
24
- arch :
24
+ - macos-latest
25
+ - windows-latest
26
+ julia-arch :
25
27
- x64
28
+ exclude :
29
+ - os : macOS-latest
30
+ julia-arch : x86
26
31
steps :
27
32
- uses : actions/checkout@v4
28
- - uses : julia-actions/setup-julia@v1
33
+ - uses : julia-actions/setup-julia@v2
29
34
with :
30
- version : ${{ matrix.version }}
31
- arch : ${{ matrix.arch }}
32
- - uses : actions/cache@v1
35
+ version : ${{ matrix.julia- version }}
36
+ arch : ${{ matrix.julia- arch }}
37
+ - uses : actions/cache@v4
33
38
env :
34
39
cache-name : cache-artifacts
35
40
with :
46
51
with :
47
52
token : ${{ secrets.CODECOV_TOKEN }}
48
53
fail_ci_if_error : false
54
+ file : lcov.info
49
55
docs :
50
56
name : Documentation
51
57
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments