Skip to content

Add assertthat fallback and make reshape_data sheet-aware #15

Add assertthat fallback and make reshape_data sheet-aware

Add assertthat fallback and make reshape_data sheet-aware #15

Workflow file for this run

name: R Tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Install dependencies
shell: Rscript {0}
run: |
install.packages(c(
"testthat", "tidyverse", "rstatix", "ggstatsplot", "ggsignif",
"see", "ggpmisc", "writexl", "readxl", "emoa", "effectsize",
"easystats"
))
- name: Run tests
run: |
Rscript -e 'testthat::test_dir("tests/testthat", reporter = "summary")'