Skip to content

Commit 8d29d56

Browse files
committed
Merge branch 'main' of github.com:LewisResearchGroup/digestR
2 parents ccee55d + fbfc840 commit 8d29d56

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/R package on Windows - from GitHub.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: windows-latest
1515
strategy:
1616
matrix:
17-
r-version: ['4.3.3']
17+
r-version: ['4.3.3', '4.4.0']
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -38,6 +38,10 @@ jobs:
3838
- name: Install dependencies
3939
run: |
4040
install.packages(c("remotes", "rcmdcheck", "devtools"), repos = "https://cloud.r-project.org")
41+
if (!requireNamespace("BiocManager", quietly = TRUE)) {
42+
install.packages("BiocManager", repos = "https://cloud.r-project.org")
43+
}
44+
BiocManager::install(c("biomaRt"))
4145
remotes::install_deps(dependencies = TRUE, repos = "https://cloud.r-project.org")
4246
shell: Rscript {0}
4347

.github/workflows/R-package-macos.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: MacOS
22

33
on:
44
push:
5-
branches: [ "" ]
5+
branches: [ "main" ]
66
pull_request:
77
branches: [ "" ]
88

@@ -14,7 +14,7 @@ jobs:
1414
runs-on: macos-latest
1515
strategy:
1616
matrix:
17-
r-version: ['4.3.2']
17+
r-version: ['4.4.0']
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -69,6 +69,6 @@ jobs:
6969
7070
- name: Check
7171
run: |
72-
rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "never", build_args = "--no-build-vignettes")
72+
rcmdcheck::rcmdcheck(args = c("--no-manual", "--as-cran"), error_on = "error", build_args = "--no-build-vignettes")
7373
shell: Rscript {0}
7474
timeout-minutes: 10

.github/workflows/R-package-ubuntu.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ jobs:
6161
6262
- name: Check
6363
run: |
64-
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "never", build_args = "--no-build-vignettes")
64+
rcmdcheck::rcmdcheck(args = "--no-manual", error_on = "error", build_args = "--no-build-vignettes")
6565
shell: Rscript {0}
6666
timeout-minutes: 10

0 commit comments

Comments
 (0)