File tree Expand file tree Collapse file tree 3 files changed +25
-60
lines changed Expand file tree Collapse file tree 3 files changed +25
-60
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
name : CI
2
-
3
- on : [push, pull_request]
4
-
2
+ on :
3
+ push :
4
+ branches :
5
+ - master
6
+ tags : ' *'
7
+ pull_request :
5
8
jobs :
6
9
test :
7
- runs-on : ubuntu-latest
8
-
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"
17
+ os :
18
+ - ubuntu-latest
19
+ - macOS-latest
20
+ - windows-latest
21
+ arch :
22
+ - x64
9
23
steps :
10
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v4
11
25
- uses : julia-actions/setup-julia@v1
12
26
with :
13
- version : ' 1'
14
- arch : x64
27
+ version : ${{ matrix.version }}
28
+ arch : ${{ matrix.arch }}
29
+ - uses : julia-actions/cache@v1
15
30
- uses : julia-actions/julia-buildpkg@v1
16
31
- uses : julia-actions/julia-runtest@v1
17
32
- uses : julia-actions/julia-processcoverage@v1
18
- - uses : codecov/codecov-action@v1
33
+ - uses : codecov/codecov-action@v3
19
34
with :
20
- file : ./lcov.info
21
- flags : unittests
22
- name : codecov-umbrella
35
+ files : lcov.info
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments