Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/julia-actions/julia-processcoverage
https://github.com/julia-actions/julia-processcoverage
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/julia-actions/julia-processcoverage
- Owner: julia-actions
- License: mit
- Created: 2020-03-23T17:36:59.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-01-17T21:52:40.000Z (11 months ago)
- Last Synced: 2024-10-31T10:38:10.279Z (about 2 months ago)
- Language: Julia
- Size: 107 KB
- Stars: 13
- Watchers: 7
- Forks: 9
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
## Usage
See [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl/blob/master/test/fixtures/AllPlugins/.github/workflows/CI.yml) for a complete example.
```yaml
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v2
with:
files: lcov.info
```One can also specify the directory or directories (comma separated) to use via the `directories` input (which defaults to `src,ext`). E.g.
```yaml- uses: julia-actions/julia-processcoverage@v1
with:
directories: src,ext,examples
- uses: codecov/codecov-action@v2
with:
files: lcov.info
```
instructs the action to look for coverage information in `src`, `ext`, and an `examples` folder. Likewise, use
```yaml
- 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.