From 2f57e18e6788806453fda8b5ab0f967715980405 Mon Sep 17 00:00:00 2001 From: Tomas van Rijsse Date: Tue, 9 Dec 2025 09:18:48 +0100 Subject: [PATCH 1/2] add codecov token --- .github/workflows/coverage.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index e0d896a..f752d9d 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -41,6 +41,7 @@ jobs: - name: Upload coverage to Codecov uses: codecov/codecov-action@v5 with: + token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml fail_ci_if_error: false verbose: true From 10c2bcd8e04bc5d292b05adab59ca4dce2002bb5 Mon Sep 17 00:00:00 2001 From: Tomas van Rijsse Date: Tue, 9 Dec 2025 09:21:29 +0100 Subject: [PATCH 2/2] upload pest test results --- .github/workflows/tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 22df1b4..cd97177 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -46,4 +46,10 @@ jobs: composer update --prefer-dist --no-interaction - name: Run Pest tests - run: ./vendor/bin/pest + run: ./vendor/bin/pest --log-junit junit.xml + + - name: Upload test results to Codecov + if: ${{ !cancelled() }} + uses: codecov/test-results-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN }}