No description
Find a file
dependabot[bot] ea5e0fc691
Bump actions/cache from 3 to 5 (#30)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-12-12 16:23:53 -05:00
.github Bump actions/cache from 3 to 5 (#30) 2025-12-12 16:23:53 -05:00
action.yml RFC: change default directory to src,ext. (#19) 2022-12-21 23:56:53 +01:00
LICENSE Bump year and add author in LICENCE 2020-08-10 11:09:09 +02:00
main.jl strip whitespace (#18) 2023-11-21 22:24:08 -05:00
README.md Update README.md (#28) 2025-10-18 20:14:25 -04:00

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.