From 05c32e84926fd0a3287156d383ed6ee61a9ff734 Mon Sep 17 00:00:00 2001 From: patrickersing Date: Wed, 1 Jul 2026 09:59:01 +0200 Subject: [PATCH 1/3] update coveralls settings --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8af2fa2e..7e498c8d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,4 +99,6 @@ jobs: if: ${{ !cancelled() }} with: github-token: ${{ secrets.GITHUB_TOKEN }} - path-to-lcov: ./lcov.info + file: ./lcov.info + format: lcov + debug: true From 43a065a05b1075520038028422d3fac872a2d48e Mon Sep 17 00:00:00 2001 From: Patrick Ersing <114223904+patrickersing@users.noreply.github.com> Date: Wed, 1 Jul 2026 11:21:15 +0200 Subject: [PATCH 2/3] trust coveralls homebrew Co-authored-by: Joshua Lampert <51029046+JoshuaLampert@users.noreply.github.com> --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e498c8d..f7ce96db 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,6 +94,10 @@ jobs: files: lcov.info env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} # now required for public repos + # Workaround for https://github.com/coverallsapp/github-action/issues/264 + - name: Trust Coveralls Homebrew tap (Homebrew 6 requirement) + if: runner.os == 'macOS' + run: brew trust coverallsapp/coveralls - name: Upload coverage report to Coveralls uses: coverallsapp/github-action@v2 if: ${{ !cancelled() }} From c776a243bbce4fd1ac9bde19b0107f1a4369a6a6 Mon Sep 17 00:00:00 2001 From: Patrick Ersing <114223904+patrickersing@users.noreply.github.com> Date: Wed, 1 Jul 2026 11:31:48 +0200 Subject: [PATCH 3/3] remove debug option Co-authored-by: Joshua Lampert <51029046+JoshuaLampert@users.noreply.github.com> --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f7ce96db..b05f22cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -105,4 +105,3 @@ jobs: github-token: ${{ secrets.GITHUB_TOKEN }} file: ./lcov.info format: lcov - debug: true