From cb230fb040cb765aafc8ccc8505ee09e3c64d2ed Mon Sep 17 00:00:00 2001 From: nivr <4402120+nivr@users.noreply.github.com> Date: Fri, 19 Apr 2024 23:32:46 +0200 Subject: [PATCH] Fixing actions2 --- .github/workflows/test-coverage.yaml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index cf6916d..a0dd4bb 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -27,24 +27,5 @@ jobs: needs: coverage - name: Test coverage - run: | - covr::codecov( - quiet = FALSE, - clean = FALSE, - install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package") - ) + run: covr::codecov() shell: Rscript {0} - - - name: Show testthat output - if: always() - run: | - ## -------------------------------------------------------------------- - find '${{ runner.temp }}/package' -name 'testthat.Rout*' -exec cat '{}' \; || true - shell: bash - - - name: Upload test results - if: failure() - uses: actions/upload-artifact@v4 - with: - name: coverage-test-failures - path: ${{ runner.temp }}/package