From e908a74e72b570526b2f476be67ad24b23ceeb9f Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 15 Jun 2026 13:36:08 +1200 Subject: [PATCH 1/2] Add codecov and TagBot.yml --- .github/workflows/TagBot.yml | 14 ++++++++++++++ .github/workflows/ci.yml | 4 ++++ 2 files changed, 18 insertions(+) create mode 100644 .github/workflows/TagBot.yml diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml new file mode 100644 index 0000000..778c06f --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,14 @@ +name: TagBot +on: + issue_comment: + types: + - created + workflow_dispatch: +jobs: + TagBot: + if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0d039c1..59c8a58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,3 +27,7 @@ jobs: - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 + - uses: codecov/codecov-action@v7 + with: + files: lcov.info + token: ${{ secrets.CODECOV_TOKEN }} From 37af4a358c19a53c1ab7aaee6a0f2b90e16ce7e3 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Mon, 15 Jun 2026 13:40:39 +1200 Subject: [PATCH 2/2] Apply suggestion from @odow --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59c8a58..160d50b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,7 @@ jobs: - uses: julia-actions/cache@v3 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 + - uses: julia-actions/julia-processcoverage@v1 - uses: codecov/codecov-action@v7 with: files: lcov.info