mirror of
https://github.com/julia-actions/julia-processcoverage.git
synced 2026-02-12 02:56:59 +08:00
RFC: change default directory to src,ext. (#19)
This commit is contained in:
@@ -14,17 +14,17 @@ See [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl/blob/master/tes
|
||||
files: lcov.info
|
||||
```
|
||||
|
||||
One can also specify the directory or directories to use via the `directories` input (which defaults to `src`). E.g.
|
||||
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,examples
|
||||
directories: src,ext,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
|
||||
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:
|
||||
|
||||
Reference in New Issue
Block a user