From 3f38e1ce21f3c4e131ff04fe732adbb0530285db Mon Sep 17 00:00:00 2001 From: Enno Hermann Date: Thu, 12 Sep 2024 16:17:13 +0200 Subject: [PATCH] ci: explicitly upload hidden files for coverage Due to breaking change in upload-artifact action: https://github.com/actions/upload-artifact/issues/602 --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 64cd11d..441941b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -39,6 +39,7 @@ jobs: - name: Upload coverage data uses: actions/upload-artifact@v4 with: + include-hidden-files: true name: coverage-data-${{ matrix.python-version }}-${{ matrix.uv-resolution }} path: .coverage.* if-no-files-found: ignore