Skip to content

Commit

Permalink
r-universe
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Jul 24, 2024
1 parent 7679c27 commit 000ae59
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
http-user-agent: ${{ matrix.config.http-user-agent }}
use-public-rspm: true

- name: Add r-universe to repos
run: |
cat("\noptions(repos=c(paws='https://paws-r.r-universe.dev',wlandau='https://wlandau.r-universe.dev',CRAN ='https://cloud.r-project.org'))\n", file = "~/.Rprofile", append = TRUE)
shell: Rscript {0}

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::rcmdcheck, local::.
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/cover.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ jobs:
with:
use-public-rspm: true

- name: Add r-universe to repos
run: |
cat("\noptions(repos=c(paws='https://paws-r.r-universe.dev',wlandau='https://wlandau.r-universe.dev',CRAN ='https://cloud.r-project.org'))\n", file = "~/.Rprofile", append = TRUE)
shell: Rscript {0}

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::covr
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
- name: system dependencies
run: sudo apt-get install -y libmbedtls-dev

- name: Add r-universe to repos
run: |
cat("\noptions(repos=c(paws='https://paws-r.r-universe.dev',wlandau='https://wlandau.r-universe.dev',CRAN ='https://cloud.r-project.org'))\n", file = "~/.Rprofile", append = TRUE)
shell: Rscript {0}

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::lintr
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
with:
use-public-rspm: true

- name: Add r-universe to repos
run: |
cat("\noptions(repos=c(paws='https://paws-r.r-universe.dev',wlandau='https://wlandau.r-universe.dev',CRAN ='https://cloud.r-project.org'))\n", file = "~/.Rprofile", append = TRUE)
shell: Rscript {0}

- uses: r-lib/actions/setup-r-dependencies@v2
with:
extra-packages: any::pkgdown, local::.
Expand Down

0 comments on commit 000ae59

Please sign in to comment.