Skip to content

Commit

Permalink
ci: try to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Jul 7, 2022
1 parent a3fed35 commit 8651b08
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,22 @@ jobs:
- name: Style / Format
shell: Rscript {0}
run: styler::style_pkg( dry="fail")
run: styler::style_pkg(dry="fail")

- name: Lint
shell: Rscript {0}
run: |
devtools::document()
devtools::load_all()
lintr::lint_package()
- name: Check
env:
_R_CHECK_CRAN_INCOMING_REMOTE_: false
shell: Rscript {0}
run: devtools::check( args = c("--no-manual", "--as-cran"), error_on = "error", check_dir = "check")
run: |
devtools::document()
devtools::check(args = c("--no-manual", "--as-cran"), error_on = "error", check_dir = "check")
- name: Test
shell: Rscript {0}
Expand Down

0 comments on commit 8651b08

Please sign in to comment.