Skip to content

Commit

Permalink
Debug workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler Gu <[email protected]>
  • Loading branch information
tylergu committed Oct 8, 2024
1 parent f2d83e3 commit 2ad6510
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/unittest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,12 @@ jobs:
--cov=acto
- name: Get coverage report path
id: coverage_path
run: echo "COVERAGE_PATH={realpath .coverage.${{ github.sha }}.unittest}" >> GITHUB_OUTPUT
run: echo "COVERAGE_PATH=$(realpath .coverage.${{ github.sha }}.unittest)" >> GITHUB_OUTPUT
- name: Upload coverage
uses: actions/upload-artifact@v4
with:
name: .coverage.${{ github.sha }}.unittest
path: steps.coverage_path.outputs.COVERAGE_PATH
path: ${{ steps.coverage_path.outputs.COVERAGE_PATH }}
retention-days: 1
integration-test:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 2ad6510

Please sign in to comment.