Skip to content

ci(test.yml): add install system dependencies step #19

ci(test.yml): add install system dependencies step

ci(test.yml): add install system dependencies step #19

Workflow file for this run

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: Install devtools
run: |
renv::install("devtools")
shell: Rscript {0}
- name: Run tests
run: |
devtools::test()
shell: Rscript {0}