Skip to content

[FIX] Refactor design matrix and contrast formula for the two-sample T-test example #267

[FIX] Refactor design matrix and contrast formula for the two-sample T-test example

[FIX] Refactor design matrix and contrast formula for the two-sample T-test example #267

Workflow file for this run

---
name: prettier
on:
push:
branches:
- main
pull_request:
branches:
- '*'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
flake8:
name: run prettier
runs-on: ubuntu-latest
steps:
- name: Checkout nilearn
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.12'
allow-prereleases: false
- name: Install tox
run: python -m pip install --upgrade tox
- name: Run prettier
run: tox run -e prettier