From 2ef4cc528fe2f586ec25b9f1606e8b33f12cd0b2 Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Sat, 16 Aug 2025 16:29:05 -0400 Subject: [PATCH 1/3] Remove unavailable badge from README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index a8a0bba..e55c591 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,3 @@ -
## Usage From 04b667e7f059dec18a804f46393bcdcd355ffd95 Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Sat, 16 Aug 2025 16:29:41 -0400 Subject: [PATCH 2/3] Add title to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e55c591..f0ece41 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ +# `julia-actions/julia-processcoverage` Action ## Usage From 2caaa87d9a51182c89d5a60170a317bbeaf4090e Mon Sep 17 00:00:00 2001 From: abhro <5664668+abhro@users.noreply.github.com> Date: Sat, 16 Aug 2025 16:31:30 -0400 Subject: [PATCH 3/3] Suggest using newer `codecov/codecov-action` in README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f0ece41..31081b7 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,10 @@ See [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl/blob/master/tes ```yaml - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v2 + - 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. @@ -18,17 +19,19 @@ One can also specify the directory or directories (comma separated) to use via t - uses: julia-actions/julia-processcoverage@v1 with: directories: src,ext,examples - - uses: codecov/codecov-action@v2 + - 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 ```yaml - uses: julia-actions/julia-processcoverage@v1 with: directories: path/to/subdir/package/src - - uses: codecov/codecov-action@v2 + - 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.