From be1f6bd75c61b647d0926207794119706b114441 Mon Sep 17 00:00:00 2001 From: Eric Stern Date: Sat, 9 May 2026 16:53:04 -0700 Subject: [PATCH] update codecov --- .github/workflows/test.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 45a9f5f..4ddde06 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -71,7 +71,17 @@ jobs: - name: PHPUnit run: vendor/bin/phpunit --coverage-clover coverage.xml + --log-junit junit.xml - - name: Submit code coverage - if: ${{ always() }} - uses: codecov/codecov-action@v5 + - name: Upload coverage reports to Codecov + if: ${{ !cancelled() }} + uses: codecov/codecov-action@v6 + with: + token: ${{ secrets.CODECOV_TOKEN }} + + - name: Upload test reports to Codecov + if: ${{ !cancelled() }} + uses: codecov/codecov-action@v6 + with: + token: ${{ secrets.CODECOV_TOKEN }} + report_type: test_results