From 70b66724379def95fef171c3096c2efe08ed12fa Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 5 Aug 2024 11:45:38 -0400 Subject: [PATCH 1/2] embarrass ourselves --- .github/workflows/CI.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6d5e27eb4..a084ffb52 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -35,6 +35,15 @@ jobs: - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 + - uses: julia-actions/julia-processcoverage@v1 + with: + directories: src,ext + - uses: codecov/codecov-action@v2 + with: + files: lcov.info + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} docs: name: Documentation runs-on: ubuntu-latest From 048e74bf55f6ed6cb3a0cb5781e775949722aee2 Mon Sep 17 00:00:00 2001 From: Anshul Singhvi Date: Mon, 5 Aug 2024 11:58:23 -0400 Subject: [PATCH 2/2] Update CI.yml --- .github/workflows/CI.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a084ffb52..094a900e9 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -38,12 +38,12 @@ jobs: - uses: julia-actions/julia-processcoverage@v1 with: directories: src,ext - - uses: codecov/codecov-action@v2 + - name: Upload coverage reports to Codecov + uses: codecov/codecov-action@v4.0.1 with: files: lcov.info - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + token: ${{ secrets.CODECOV_TOKEN }} + slug: JuliaGeo/GeometryOps.jl docs: name: Documentation runs-on: ubuntu-latest