From d696160756930fad32bfeff44fd33f4ea410053a Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Wed, 29 Mar 2023 15:40:16 -0300 Subject: [PATCH] Fix CI workflow syntax at `test.yml` --- .github/workflows/test.yml | 42 +++++++++++++++++++------------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4838be1..cc7865f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -109,24 +109,24 @@ jobs: name: "${{ github.job }}-${{ matrix.php-version }}-${{ matrix.extension }}.coverage" path: "coverage.xml" - upload_coverage: - name: "Upload coverage to Codecov" - runs-on: "ubuntu-22.04" - needs: - - "test" - - steps: - - name: "Checkout" - uses: "actions/checkout@v3" - with: - fetch-depth: 2 - - - name: "Download coverage files" - uses: "actions/download-artifact@v3" - with: - path: "reports" - - - name: "Upload to Codecov" - uses: "codecov/codecov-action@v3" - with: - directory: reports + upload_coverage: + name: "Upload coverage to Codecov" + runs-on: "ubuntu-22.04" + needs: + - "test" + + steps: + - name: "Checkout" + uses: "actions/checkout@v3" + with: + fetch-depth: 2 + + - name: "Download coverage files" + uses: "actions/download-artifact@v3" + with: + path: "reports" + + - name: "Upload to Codecov" + uses: "codecov/codecov-action@v3" + with: + directory: reports