Skip to content

Commit df538c8

Browse files
committed
ci: switch to codecov
1 parent 3183c2f commit df538c8

File tree

1 file changed

+5
-19
lines changed

1 file changed

+5
-19
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
paths:
88
- 'test/**'
99
- 'src/**'
10+
- 'benchmark/**'
1011
- '.github/workflows/**'
1112
- 'Project.toml'
1213
pull_request:
@@ -15,6 +16,7 @@ on:
1516
paths:
1617
- 'test/**'
1718
- 'src/**'
19+
- 'benchmark/**'
1820
- '.github/workflows/**'
1921
- 'Project.toml'
2022

@@ -88,24 +90,8 @@ jobs:
8890
SR_TEST=${{ matrix.test_name }} julia --color=yes --threads=auto --check-bounds=yes --depwarn=yes --code-coverage=user -e 'import Coverage; import Pkg; Pkg.activate("."); Pkg.test(coverage=true)'
8991
julia --color=yes coverage.jl
9092
shell: bash
91-
- name: Coveralls
92-
uses: coverallsapp/github-action@v2
93+
- uses: codecov/codecov-action@v5
9394
if: steps.run-tests.outcome == 'success'
9495
with:
95-
parallel: true
96-
path-to-lcov: lcov.info
97-
flag-name: julia-${{ matrix.julia-version }}-${{ matrix.os }}-${{ matrix.test_name }}-${{ github.event_name }}
98-
99-
100-
coveralls:
101-
name: Indicate completion to coveralls
102-
runs-on: ubuntu-latest
103-
needs:
104-
- test
105-
- additional_tests
106-
steps:
107-
- name: Finish
108-
uses: coverallsapp/github-action@v2
109-
with:
110-
parallel-finished: true
111-
96+
token: ${{ secrets.CODECOV_TOKEN }}
97+
files: lcov.info

0 commit comments

Comments
 (0)