Skip to content

Update r_functionality.R #10

Update r_functionality.R

Update r_functionality.R #10

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")'