Skip to content

fix(test.yml): add CRAN repo in pipeline #11

fix(test.yml): add CRAN repo in pipeline

fix(test.yml): add CRAN repo in pipeline #11

Workflow file for this run

name: Tests
on:
push:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup R
uses: r-lib/actions/setup-r@v2
- name: Set CRAN mirror
run: |
options(repos = c(CRAN = "https://cloud.r-project.org"))
install.packages("renv")
shell: Rscript {0}
- name: Install dependencies
uses: r-lib/actions/setup-renv@v2
- name: Run tests
run: |
library(devtools)
devtools::test()
shell: Rscript {0}