Skip to content

Merge branch 'main' of https://github.com/hed-standard/hed-python int… #2

Merge branch 'main' of https://github.com/hed-standard/hed-python int…

Merge branch 'main' of https://github.com/hed-standard/hed-python int… #2

Workflow file for this run

name: Ruff
on:
push:
branches: ["*"]
pull_request:
branches: ["*"]
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 .