File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 66
66
- uses : julia-actions/julia-buildpkg@v1
67
67
- uses : julia-actions/julia-runtest@v1
68
68
- uses : julia-actions/julia-processcoverage@v1
69
+ - name : (debug) find all lcov.info files
70
+ run : find . -type f -name 'lcov.info'
71
+ if : runner.os != 'Windows'
72
+ # - name: (debug) cat all lcov.info files
73
+ # run: find . -type f -name 'lcov.info' -exec cat {} \;
74
+ # if: runner.os != 'Windows'
69
75
- uses : codecov/codecov-action@v4
70
76
with :
71
77
file : lcov.info
78
+ # For `v4` of `codecov/codecov-action`,
79
+ # if the repo is public, the following rules apply:
80
+ # 1. If the PR is from a fork, then no Codecov token is required.
81
+ # 2. If the PR is NOT from a fork, then the Codecov token is required.
82
+ token : ${{ secrets.CODECOV_TOKEN }}
83
+ fail_ci_if_error : true
You can’t perform that action at this time.
0 commit comments