Skip to content

fix(tests.yml): change shell to R #3

fix(tests.yml): change shell to R

fix(tests.yml): change shell to R #3

Workflow file for this run

name: R-CI
on:
push:
branches:
- '*'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup R
uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: |
install.packages(c('remotes', 'testthat', 'devtools', 'gridGraphics', 'kableExtra', 'ggpubr', 'cowplot', 'rstatix', 'readxl', 'tidyverse'))
remotes::install_deps(dependencies = TRUE)
shell: Rscript {0}
- name: Run tests
run: |
devtools::test()
shell: Rscript {0}