Skip to content

Cleaned up the documentation for the hedpy #31

Cleaned up the documentation for the hedpy

Cleaned up the documentation for the hedpy #31

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 .