diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6596f77b6..a46176299 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -177,7 +177,9 @@ jobs: if: success() || failure() && contains(fromJSON('["success", "failure"]'), steps.run_tests.outcome) with: name: coverage-${{ env.id_string }} - path: .coverage.${{ env.id_string }} + path: .coverage.${{ env.id_string }} + # need to include hidden files since path starts with . + include-hidden-files: true - name: Make test XML filename unique run: mv junit/test-results.xml ${{ env.id_string }}-test-results.xml # Run whether or not the tests passed, but only if they ran at all @@ -278,6 +280,8 @@ jobs: with: name: coverage-${{ env.id_string }} path: .coverage.${{ env.id_string }} + # need to include hidden files since path starts with . + include-hidden-files: true - name: Make test XML filename unique run: mv junit/test-results.xml ${{ env.id_string }}-test-results.xml # Run whether or not the tests passed, but only if they ran at all