mirror of
https://github.com/julia-actions/julia-processcoverage.git
synced 2026-02-12 02:56:59 +08:00
ecc9c0165392fbdca296e17219ee4406a8388aa8
* Remove unavailable badge from README.md * Add title to README.md * Suggest using newer `codecov/codecov-action` in README.md
julia-actions/julia-processcoverage Action
Usage
See PkgTemplates.jl for a complete example.
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
One can also specify the directory or directories (comma separated) to use via the directories input (which defaults to src,ext). E.g.
- uses: julia-actions/julia-processcoverage@v1
with:
directories: src,ext,examples
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
instructs the action to look for coverage information in src, ext, and an examples folder. Likewise, use
- uses: julia-actions/julia-processcoverage@v1
with:
directories: path/to/subdir/package/src
- uses: codecov/codecov-action@v5
with:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
to get coverage information from a package in a subdirectory of the repo.
Languages
Julia
100%