1
0
mirror of https://github.com/msberends/AMR.git synced 2025-09-06 09:29:38 +02:00

new umcg logo and old CHECKOUT update

This commit is contained in:
2025-09-03 11:49:10 +02:00
parent 60bd631e1a
commit eca638529c
3 changed files with 24 additions and 3977 deletions

View File

@@ -76,9 +76,14 @@ jobs:
- uses: r-lib/actions/setup-pandoc@v2
- name: Install tinytest from CRAN
- name: Install suggested pkgs (and tinytest) from CRAN
run: |
install.packages("tinytest", repos = "https://cran.r-project.org")
desc_lines <- readLines('DESCRIPTION')
suggests <- readLines('DESCRIPTION')[grepl("^(Suggests:| )", readLines('DESCRIPTION'))]
suggests <- suggests[(which(grepl("^Suggests", suggests)) + 1):length(suggests)]
suggests <- gsub("[ ,]", "", suggests)
pkgs <- unique(c(suggests, "tinytest"))
for (p in pkgs) try(install.packages(p, repos = "https://cran.r-project.org"), silent = TRUE)
shell: Rscript {0}
- name: Show session info