Skip to content

Update README to note included dataset #49

Update README to note included dataset

Update README to note included dataset #49

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
working-directory: lpme
extra-packages: any::testthat
- name: Install package
run: R CMD INSTALL lpme
- name: Run tests
run: Rscript -e 'library(lpme); testthat::test_dir("tests/testthat")'