Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
agricolamz committed Jul 14, 2024
1 parent c29f6d7 commit 7fe1a71
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
R_KEEP_PKG_SOURCE: yes
R_CHECK_DONTTEST_EXAMPLES: no

steps:
- uses: actions/checkout@v3
Expand All @@ -43,6 +44,11 @@ jobs:
extra-packages: any::rcmdcheck
needs: check

- uses: r-lib/actions/check-r-package@v2
with:
upload-snapshots: true
- name: Check package
run: |
rcmdcheck::rcmdcheck(
args = c("--no-vignettes", "--no-manual"),
error_on = "warning",
check_dir = "check"
)
shell: Rscript {0}

0 comments on commit 7fe1a71

Please sign in to comment.