Skip to content

Commit a6a9e2d

Browse files
committed
update actions
1 parent bb9c4d8 commit a6a9e2d

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ jobs:
8787
# Install the package
8888
- name: Install the required packages
8989
run: |
90+
options(repos = c(CRAN = "https://cloud.r-project.org"))
9091
install.packages('devtools')
9192
install.packages('rcmdcheck')
9293
install.packages(c('BayesFactor', 'runjags', 'rjags', 'rstan', 'scales', 'vdiffr', 'testthat', 'covr', 'pandoc'))

.github/workflows/pkgdown.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ jobs:
5050
# Install the package and its dependencies
5151
- name: Install required packages
5252
run: |
53+
options(repos = c(CRAN = "https://cloud.r-project.org"))
5354
install.packages('devtools')
5455
install.packages('pkgdown')
5556
install.packages(c('BayesFactor', 'runjags', 'rjags', 'rstan', 'scales', 'vdiffr', 'testthat', 'covr', 'pandoc'))

.github/workflows/test-coverage.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ jobs:
4848
# Install the package
4949
- name: Install the required packages
5050
run: |
51+
options(repos = c(CRAN = "https://cloud.r-project.org"))
5152
install.packages('devtools')
5253
install.packages('rcmdcheck')
5354
install.packages(c('BayesFactor', 'runjags', 'rjags', 'rstan', 'scales', 'vdiffr', 'testthat', 'covr', 'pandoc'))

0 commit comments

Comments
 (0)