File tree Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Expand file tree Collapse file tree 1 file changed +16
-3
lines changed Original file line number Diff line number Diff line change 9
9
jobs :
10
10
test :
11
11
runs-on : ubuntu-latest
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ group :
16
+ - Core
17
+ version :
18
+ - ' 1' # Latest Release
19
+ - ' ~1.6' # Current LTS
20
+ - ' ^1.9.0-0'
12
21
steps :
13
22
- uses : actions/checkout@v2
14
23
- uses : julia-actions/setup-julia@v1
15
24
with :
16
- version : 1
25
+ version : ${{ matrix.version }}
17
26
- uses : actions/cache@v1
18
27
env :
19
28
cache-name : cache-artifacts
26
35
${{ runner.os }}-
27
36
- uses : julia-actions/julia-buildpkg@v1
28
37
- uses : julia-actions/julia-runtest@v1
38
+ env :
39
+ GROUP : ${{ matrix.group }}
29
40
- uses : julia-actions/julia-processcoverage@v1
30
- - uses : codecov/codecov-action@v1
31
41
with :
32
- file : lcov.info
42
+ directories : src,ext
43
+ - uses : codecov/codecov-action@v3
44
+ with :
45
+ files : lcov.info
You can’t perform that action at this time.
0 commit comments