diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 5650605a..d949c97a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -61,9 +61,9 @@ jobs: mv .coverage .coverage.${{ matrix.python-version }}.${{ matrix.os }} - name: Store coverage files - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: - name: coverage + name: coverage-${{ matrix.python-version }}-${{ matrix.os }} path: .coverage.${{ matrix.python-version }}.${{ matrix.os }} report-coverage: @@ -84,8 +84,9 @@ jobs: - name: Download coverage files uses: actions/download-artifact@v4 with: - name: coverage + pattern: coverage-* # download all the uploaded coverage reports path: coverage + merge-multiple: true # download them in the same folder - name: Install Hatch uses: pypa/hatch@install