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