Skip to content

Commit

Permalink
Update coverage-local.yml
Browse files Browse the repository at this point in the history
workspace to action_path
sigmafelix authored Mar 20, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent bbb1436 commit 607bc02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage-local.yml
Original file line number Diff line number Diff line change
@@ -40,14 +40,14 @@ jobs:
- name: Test coverage
run: |
Rscript -e "writeLines(as.character(covr::coverage_to_list()$totalcoverage), 'local_cov.Rout')"
Rscript -e "writeLines(as.character(covr::coverage_to_list()$totalcoverage), '${{ github.action_path }}/local_cov.Rout')"
shell: bash

- name: Get Values
id: get-values
shell: bash
run: |
COV=$(cat '${{ github.workspace }}/local_conv.Rout')
COV=$(cat '${{ github.action_path }}/local_conv.Rout')
echo "coverage=$COV" >> $GITHUB_OUTPUT
- name: Checkout gh-pages

0 comments on commit 607bc02

Please sign in to comment.