-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtic-dev.R
More file actions
20 lines (17 loc) · 798 Bytes
/
tic-dev.R
File metadata and controls
20 lines (17 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# installs dependencies, runs R CMD check, runs covr::codecov()
get_stage("install") %>%
add_step(step_install_github(c("bd-R/bdutilities@dev",
"bd-R/bdDwC@dev",
'bd-R/bdutilities.app@dev',
'bd-R/bddwc.app@dev',
'bd-R/bdchecks@dev',
'bd-R/bdchecks.app@dev',
'bd-R/bdclean@dev',
'bd-R/bdverse@dev',
'bd-R/bdtests@dev')))
do_package_checks()
if (ci_on_ghactions() && ci_has_env("BUILD_PKGDOWN")) {
# creates pkgdown site and pushes to gh-pages branch
# only for the runner with the "BUILD_PKGDOWN" env var set
do_pkgdown()
}