From 87b67046392aa0b2c2b11ea8655ad40b9dc1f130 Mon Sep 17 00:00:00 2001 From: Robert Knight Date: Mon, 2 Sep 2024 15:36:02 +0100 Subject: [PATCH] Enable `include-hidden-files` option for coverage upload This resolves an issue where the `.coverage.{python_version}` file was not uploaded. See https://github.com/actions/upload-artifact/issues/602 and https://hypothes-is.slack.com/archives/C4K6M7P5E/p1725285976308269. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a244d13b17a..d562389be4c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -101,6 +101,7 @@ jobs: with: name: coverage path: .coverage.* + include-hidden-files: true Coverage: needs: tests runs-on: ubuntu-latest