diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9a972d7..04055a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,19 +65,22 @@ jobs: - name: Store coverage data uses: actions/upload-artifact@v4 with: - name: code-coverage + name: code-coverage-${{ matrix.php }} path: _coverage coverage: runs-on: ubuntu-latest needs: [ phpunit ] + strategy: + matrix: + php: [ 8.2, 8.3 ] steps: - uses: actions/checkout@v4 - uses: actions/download-artifact@v4 with: - name: code-coverage + name: code-coverage-${{ matrix.php }} path: _coverage - name: Output coverage