From 31465a381e4a0d0c3499a8263c58f1e684035369 Mon Sep 17 00:00:00 2001 From: Curtis Delicata Date: Mon, 17 Jun 2024 03:49:28 +0000 Subject: [PATCH] Fix tests workflow --- .github/workflows/tests.yml | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 71d352b4..3f64d518 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -43,12 +43,13 @@ jobs: - name: Run tests run: vendor/bin/phpunit --coverage-clover=coverage.xml - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} - files: ./coverage.xml - flags: unittests - name: codecov-umbrella - fail_ci_if_error: true - run: vendor/bin/phpunit --coverage-clover=coverage.xml + + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v3 + with: + token: ${{ secrets.CODECOV_TOKEN }} + files: ./coverage.xml + flags: unittests + name: codecov-umbrella + fail_ci_if_error: true +