Skip to content

Commit 72bbcf0

Browse files
updating github actions for devel
1 parent 3dbb6e1 commit 72bbcf0

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/check-bioc.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ env:
4040
has_RUnit: 'false'
4141
cache-version: 'cache-v1'
4242
run_docker: 'false'
43-
bioc_version: 'bioc-release'
43+
bioc_version: 'bioc-devel'
4444
## Valid options are:
4545
## "bioc-release"
4646
## "bioc-devel"
@@ -85,7 +85,7 @@ jobs:
8585
fi
8686
echo "Found these settings:"
8787
echo "Bioconductor version: $biocversion, R version: $rversion, Bioconductor docker name: $bioccont"
88-
echo "matrix={ \"config\": [{\"os\" : \"ubuntu-latest\", \"r\" : \"${rversion}\", \"bioc\" : \"${biocversion}\", \"cont\" : \"${bioccont}\"} , {\"os\" : \"macOS-latest\", \"r\" : \"${rversion}\", \"bioc\" : \"${biocversion}\"} , {\"os\" : \"windows-latest\", \"r\" : \"${rversion}\", \"bioc\" : \"${biocversion}\" }] }" >> "$GITHUB_OUTPUT"
88+
echo "matrix={ \"config\": [{\"os\" : \"ubuntu-latest\", \"r\" : \"${rversion}\", \"bioc\" : \"${biocversion}\", \"cont\" : \"${bioccont}\"} ] }" >> "$GITHUB_OUTPUT"
8989
## If an OS is failing and you don't want to test it, manually remove it from the 'matrix' JSON entries above
9090
9191
build-check:
@@ -238,7 +238,7 @@ jobs:
238238
- name: Install pkgdown
239239
if: github.ref == 'refs/heads/devel' && env.run_pkgdown == 'true' && runner.os == 'Linux'
240240
run: |
241-
remotes::install_cran("pkgdown")
241+
remotes::install_github("r-lib/pkgdown")
242242
shell: Rscript {0}
243243

244244
- name: Session info
@@ -257,7 +257,7 @@ jobs:
257257
rcmdcheck::rcmdcheck(
258258
args = c("--no-manual", "--no-vignettes", "--timings"),
259259
build_args = c("--no-manual", "--keep-empty-dirs", "--no-resave-data"),
260-
error_on = "warning",
260+
error_on = "error",
261261
check_dir = "check"
262262
)
263263
shell: Rscript {0}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ After Bioc release, run
2222

2323
```r
2424
libnrary(biocthis)
25-
use_bioc_github_action(covr = TRUE, pkgdown = FALSE, testthat = TRUE, RUnit = FALSE)
25+
use_bioc_github_action(biocdocker = "devel", covr = TRUE, pkgdown = FALSE, testthat = TRUE, RUnit = FALSE)
2626
```
2727

2828
in the root.

0 commit comments

Comments
 (0)