Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
jbferet committed Jan 3, 2024
2 parents b44fb7a + b229551 commit ee11293
Showing 1 changed file with 9 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: [main]
branches: [main, master]
pull_request:
branches: [main]
branches: [main, master]

name: test-coverage

Expand All @@ -13,28 +13,24 @@ jobs:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
name: R

steps:
- uses: actions/checkout@v3
- name: Setup R
uses: r-lib/actions/setup-r@v2

- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: |
any::covr
any::rcmdcheck
needs: |
coverage
check
working-directory: 'prospect'
extra-packages: any::covr
needs: coverage

- name: Test coverage
run: |
covr::codecov(
quiet = FALSE,
clean = FALSE,
path = "prospect",
install_path = file.path(Sys.getenv("RUNNER_TEMP"), "package")
)
shell: Rscript {0}
Expand Down

0 comments on commit ee11293

Please sign in to comment.