Skip to content

Commit

Permalink
Use all test coverage and fix pkgdown deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
lazappi committed Oct 17, 2024
1 parent bc709dc commit 8804795
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,7 @@ jobs:
cov <- covr::package_coverage(
quiet = FALSE,
clean = FALSE,
type = "all",
install_path = file.path(normalizePath(Sys.getenv("RUNNER_TEMP"), winslash = "/"), "package")
)
covr::to_cobertura(cov)
Expand Down Expand Up @@ -311,9 +312,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Set git credentials
## Assign commits to the GitHub Action user. This should happen
## automatically but doesn't (maybe because of Docker).
- run: |
git config user.name github-actions[bot]
git config user.email github-actions[bot]@users.noreply.github.com
- name: Install extra linux dependencies
run: sudo apt-get update -y && sudo apt-get install -y libcurl4-openssl-dev devscripts qpdf

- name: Install rsync 📚
run: |
apt-get update && apt-get install -y rsync
- name: Setup R dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
Expand Down

0 comments on commit 8804795

Please sign in to comment.