From 239b408cd4b53d9577804780398e6d3e997649e0 Mon Sep 17 00:00:00 2001 From: Talley Lambert Date: Mon, 9 Sep 2024 10:14:38 -0400 Subject: [PATCH] fix: include hidden files for upload artifact (#11) * fix: include hidden files for upload artifact * fix lint --- .github/workflows/test-pyrepo.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-pyrepo.yml b/.github/workflows/test-pyrepo.yml index a3d2bb4..412d861 100644 --- a/.github/workflows/test-pyrepo.yml +++ b/.github/workflows/test-pyrepo.yml @@ -269,8 +269,9 @@ jobs: fi - name: Upload coverage data - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 if: inputs.coverage-upload == 'artifact' with: name: covreport-${{ inputs.os }}-py${{ inputs.python-version }}-${{ env.UUID }} path: ./.coverage* + include-hidden-files: true