refactor(tests): remove devtools from action and run tests suite with… #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Tests | |
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 system dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libcurl4-openssl-dev libssl-dev libxml2-dev | |
shell: bash | |
- name: Set CRAN mirror and install renv | |
run: | | |
options(repos = c(CRAN = "https://cloud.r-project.org")) | |
install.packages("renv") | |
shell: Rscript {0} | |
- name: Restore R package library | |
run: renv::restore() | |
shell: Rscript {0} | |
- name: Run tests | |
run: | | |
library(testthat) | |
test_dir("tests/testthat") | |
shell: Rscript {0} |