From 4062f37856ab3c28266a9a2ab79458de9502bf22 Mon Sep 17 00:00:00 2001 From: Kevin Browne Date: Tue, 5 Mar 2024 16:04:38 +0000 Subject: [PATCH] The Code Climate action apparently needs to run in a repo The Code Climate action, used to upload coverage reports appears to need to run in a git repo. Add a checkout action to check out the repo. --- .github/workflows/upload_coverage.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/upload_coverage.yml b/.github/workflows/upload_coverage.yml index 7dc34fe..5efb142 100644 --- a/.github/workflows/upload_coverage.yml +++ b/.github/workflows/upload_coverage.yml @@ -12,6 +12,8 @@ jobs: if: github.event.workflow_run.conclusion == 'success' steps: + - uses: actions/checkout@v4 + - name: Fetch coverage report uses: actions/download-artifact@v4 with: