Skip to content

Updated the docs for hed-python #12

Updated the docs for hed-python

Updated the docs for hed-python #12

Workflow file for this run

name: Ruff
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
ruff:
name: Check for style errors and common problems
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Install Ruff
run: |
python -m pip install --upgrade pip
pip install ruff>=0.8.0
- name: Run Ruff linter
run: |
ruff check .