Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: actions/checkout@v6

- name: Setup Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.12'
cache: 'pip'
Expand Down
File renamed without changes.
32 changes: 32 additions & 0 deletions .github/workflows/ruff.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
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 .
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
html_js_files = ["gh_icon_fix.js"]

# Add logo
html_logo = "assets/images/croppedWideLogo.png"
html_logo = "source/_static/images/croppedWideLogo.png"

# Furo theme options
html_theme_options = {
Expand Down
6 changes: 3 additions & 3 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
HED Python Tools Documentation
=================================
HED Python tools
================

Welcome to the HED Python Tools documentation. This package provides comprehensive tools for working with Hierarchical Event Descriptors (HED) in Python.
Welcome to the HED Python tools documentation. This package provides comprehensive tools for working with Hierarchical Event Descriptors (HED) in Python.

.. toctree::
:maxdepth: 2
Expand Down