From 56411711213a1db789ed017c4198a2efff84fae0 Mon Sep 17 00:00:00 2001 From: ljnsn Date: Thu, 7 Mar 2024 00:28:30 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20ci:=20fix=20windows?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pythonpackage.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/pythonpackage.yml b/.github/workflows/pythonpackage.yml index b60d198..100baba 100644 --- a/.github/workflows/pythonpackage.yml +++ b/.github/workflows/pythonpackage.yml @@ -62,7 +62,6 @@ jobs: - name: Test run: python -m pdm run test - name: Archive code coverage results - if: ${{ matrix.platform }} == 'ubuntu-latest' uses: actions/upload-artifact@v3 with: name: coverage-${{ matrix.package }}-${{ matrix.python-version }} @@ -79,7 +78,7 @@ jobs: uses: actions/download-artifact@v3 - name: Combine reports run: | - coverage combine $(ls **/.coverage) + coverage combine $(ls ./**/.coverage) coverage report coverage xml - name: Upload coverage