Skip to content

feat(ch13): Stroop within-subject analysis (paired t-test + LMM) and … #63

feat(ch13): Stroop within-subject analysis (paired t-test + LMM) and …

feat(ch13): Stroop within-subject analysis (paired t-test + LMM) and … #63

Workflow file for this run

name: ci
on:
push:
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
py: ['3.10','3.11','3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- run: python -m pip install --upgrade pip
- run: pip install -r requirements.txt
- run: python -c "import numpy, pandas, scipy, statsmodels; print('OK')"