Skip to content

Update README.md

Update README.md #10

Workflow file for this run

name: CI tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up R
uses: r-lib/actions/setup-r@v2
- name: Install dependencies
run: |
Rscript -e 'install.packages("testthat")'
Rscript -e 'install.packages("here")'
Rscript -e 'install.packages("zoo")'
Rscript -e 'install.packages("lubridate")'
Rscript -e 'install.packages("foreach")'
Rscript -e 'install.packages("doParallel")'
- name: Run tests
run: |
Rscript -e 'testthat::test_dir("tests/testthat")'