Skip to content

Commit fcbf829

Browse files
committed
update: add filter version 1.6 to trigger docs test
1 parent 58c874f commit fcbf829

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,17 +50,17 @@ jobs:
5050
- uses: julia-actions/julia-buildpkg@v1
5151
- name: "Run test without coverage report"
5252
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' }}
5454
with:
5555
coverage: false
5656

5757
- name: "Run test with coverage report"
5858
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'
6060
- 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'
6262
- 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'
6464
with:
6565
file: lcov.info
6666

0 commit comments

Comments
 (0)