Skip to content

Commit

Permalink
Coverage patch 1 (#1)
Browse files Browse the repository at this point in the history
Just a test
  • Loading branch information
skyleaworlder authored Dec 16, 2022
1 parent 4a2dc27 commit 58c874f
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,21 @@ jobs:
${{ runner.os }}-test-
${{ runner.os }}-
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
- name: "Run test without coverage report"
uses: julia-actions/julia-runtest@v1
if: matrix.version != '1' || matrix.os != 'ubuntu-latest'
with:
coverage: false

- name: "Run test with coverage report"
uses: julia-actions/julia-runtest@v1
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
- uses: julia-actions/julia-processcoverage@v1
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
- uses: codecov/codecov-action@v2
if: matrix.version == '1' && matrix.os == 'ubuntu-latest'
with:
file: lcov.info

docs:
name: Documentation
Expand Down

0 comments on commit 58c874f

Please sign in to comment.