Skip to content

Commit

Permalink
[CI] Update some GitHub Actions workflows (#414)
Browse files Browse the repository at this point in the history
* [CI] Update some GitHub Actions workflows

* [CI] Tests must be run in the same step as the one setting up the SSH agent
  • Loading branch information
giordano authored Feb 15, 2025
1 parent 8ccf581 commit c925b84
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ jobs:
# cache-artifacts: "true"
# cache-packages: "false"
# cache-registries: "false"
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-buildpkg@v1
with:
ignore-no-cache: true
- name: System info
run: |
args=(--check-bounds=yes --color=yes --depwarn=yes --inline=yes --project=@.)
Expand All @@ -116,7 +118,15 @@ jobs:
ssh-keyscan github.com >> ~/.ssh/known_hosts
ssh-add test/id_ecdsa_deploy_helloworld_c_jll_read_only
julia --check-bounds=yes --color=yes --depwarn=yes --inline=yes --project=@. -e 'using Pkg; Pkg.instantiate(); Pkg.test(coverage=true)'
- uses: julia-actions/julia-uploadcodecov@v0.1
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
continue-on-error: true
- uses: julia-actions/julia-uploadcoveralls@v1.0
with:
files: lcov.info
- uses: coverallsapp/github-action@v2
continue-on-error: true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: lcov.info
flag-name: run-${{ join(matrix.*, '-') }}
parallel: true

0 comments on commit c925b84

Please sign in to comment.