File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change 48
48
${{ runner.os }}-test-
49
49
${{ runner.os }}-
50
50
- uses : julia-actions/julia-buildpkg@v1
51
- - uses : julia-actions/julia-runtest@v1
51
+ - name : " Run test without coverage report"
52
+ uses : julia-actions/julia-runtest@v1
53
+ if : matrix.version != '1' || matrix.os != 'ubuntu-latest'
54
+ with :
55
+ coverage : false
56
+
57
+ - name : " Run test with coverage report"
58
+ uses : julia-actions/julia-runtest@v1
59
+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest'
60
+ - uses : julia-actions/julia-processcoverage@v1
61
+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest'
62
+ - uses : codecov/codecov-action@v2
63
+ if : matrix.version == '1' && matrix.os == 'ubuntu-latest'
64
+ with :
65
+ file : lcov.info
52
66
53
67
docs :
54
68
name : Documentation
You can’t perform that action at this time.
0 commit comments