mirror of
https://github.com/julia-actions/julia-processcoverage.git
synced 2026-02-12 02:56:59 +08:00
6e018a9646a8ded85c6597312731d1f9621b93e9
Usage
See PkgTemplates.jl for a complete example.
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
with:
files: lcov.info
One can also specify the directory or directories to use via the directories input (which defaults to src). E.g.
- uses: julia-actions/julia-processcoverage@v1
with:
directories: src,examples
- uses: codecov/codecov-action@v2
with:
files: lcov.info
instructs the action to look for coverage information in both src and an examples folder. Likewise, use
- uses: julia-actions/julia-processcoverage@v1
with:
directories: path/to/subdir/package/src
- uses: codecov/codecov-action@v2
with:
files: lcov.info
to get coverage information from a package in a subdirectory of the repo.
Languages
Julia
100%