From 7e0063f4bb8912f3d278d04ab0421013549c1617 Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Tue, 3 Sep 2024 19:19:57 +0200 Subject: [PATCH] chore: Fix coverage files upload by enable hidden files upload (#1186) fix bug introduced by https://github.com/actions/upload-artifact/issues/602 ## Summary by CodeRabbit - **New Features** - Introduced a new parameter to include hidden files in coverage reports, enhancing the comprehensiveness of the analysis. --- .github/workflows/base_test_workflow.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/base_test_workflow.yml b/.github/workflows/base_test_workflow.yml index dd34cca4e..5437386b4 100644 --- a/.github/workflows/base_test_workflow.yml +++ b/.github/workflows/base_test_workflow.yml @@ -105,9 +105,10 @@ jobs: retention-days: 7 - name: Upload coverage data - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v4.4.0 if: ${{ inputs.coverage }} with: name: cov-reports-${{ inputs.os }}-py-${{ inputs.python_version }}-${{ inputs.napari }}-${{ inputs.qt_backend }} + include-hidden-files: 'true' path: | ./.coverage.*