Skip to content

Commit bd0ba69

Browse files
committed
Add coverage to CI
Also updated the `julia-actions/cache` version.
1 parent 7d1030e commit bd0ba69

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/CI.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,18 @@ jobs:
2121
- os: ubuntu-latest
2222
julia-arch: x86
2323
julia-version: '1'
24+
2425
steps:
2526
- uses: actions/checkout@v4
2627
- uses: julia-actions/setup-julia@v2
2728
with:
2829
version: ${{ matrix.julia-version }}
2930
arch: ${{ matrix.julia-arch }}
30-
- uses: julia-actions/cache@v1
31+
- uses: julia-actions/cache@v2
3132
- uses: julia-actions/julia-buildpkg@v1
3233
- uses: julia-actions/julia-runtest@v1
34+
- uses: julia-actions/julia-processcoverage@v1
35+
- uses: codecov/codecov-action@v5
36+
with:
37+
files: lcov.info
38+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)