Skip to content

Commit

Permalink
try again
Browse files Browse the repository at this point in the history
  • Loading branch information
jwahlstrand committed Sep 21, 2024
1 parent 87669ad commit 6a7ad9c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@latest
- name: GObjectIntrospection tests
shell: julia --project=@. --color=yes {0}
Expand All @@ -48,16 +48,17 @@ jobs:
- uses: julia-actions/julia-runtest@latest
with:
prefix: ${{ matrix.prefix }}
coverage: ${{ matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64' }}
- uses: julia-actions/julia-processcoverage@latest
if: startsWith(matrix.os, 'ubuntu')
if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64'
with:
directories: GI/src,src
- uses: codecov/codecov-action@v4
if: startsWith(matrix.os, 'ubuntu')
if: matrix.version == '1' && matrix.os == 'ubuntu-latest' && matrix.arch == 'x64'
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false # or true if you want CI to fail when Codecov fails
file: lcov.info
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

Documentation:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 6a7ad9c

Please sign in to comment.