Skip to content

Updated the docs for hed-python #82

Updated the docs for hed-python

Updated the docs for hed-python #82

Workflow file for this run

name: Black Code Formatter Check
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
permissions:
contents: read
jobs:
black:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Black
run: |
python -m pip install --upgrade pip
pip install black>=24.0.0
- name: Check code formatting with Black
run: |
black --check --diff --workers 1 .