chore(actions)(deps): bump JamesIves/github-pages-deploy-action from 4.8.0 to 4.9.0 #22
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| branches: [main, master] | |
| name: test-coverage | |
| jobs: | |
| test-coverage: | |
| runs-on: ubuntu-latest | |
| env: | |
| GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: r-lib/actions/setup-r@v2 | |
| with: | |
| use-public-rspm: true | |
| - uses: r-lib/actions/setup-r-dependencies@v2 | |
| with: | |
| # knitr + rmarkdown are the VignetteBuilder, needed to build | |
| # the package for covr instrumentation. | |
| # greta is archived from CRAN; install from GitHub source so | |
| # requireNamespace("greta") succeeds for the codegen/dispatch/ | |
| # review tests (no Python/TF; fitting tests skip via skip_on_ci()). | |
| extra-packages: any::covr, any::xml2, any::knitr, any::rmarkdown, any::testthat, any::withr, greta-dev/greta | |
| needs: coverage | |
| # "hard" stops pak from trying to resolve the special-repo / | |
| # heavy Suggests (INLA, greta) which fail to solve on CI; | |
| # backend-specific tests skip via skip_on_ci(). | |
| dependencies: '"hard"' | |
| - name: Test coverage | |
| run: | | |
| cov <- covr::package_coverage( | |
| quiet = FALSE, | |
| clean = FALSE, | |
| install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package") | |
| ) | |
| covr::to_cobertura(cov) | |
| shell: Rscript {0} | |
| - uses: codecov/codecov-action@v7 | |
| with: | |
| fail_ci_if_error: false | |
| file: ./cobertura.xml | |
| plugin: noop | |
| disable_search: true | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| - 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@v7 | |
| with: | |
| name: coverage-test-failures | |
| path: ${{ runner.temp }}/package |