Skip to content

Commit 13d77fd

Browse files
authored
Cleaning up the action versions
Cleaning up the action versions
2 parents 9079d19 + e55ab68 commit 13d77fd

File tree

7 files changed

+37
-5
lines changed

7 files changed

+37
-5
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/checkout@v6
2121

2222
- name: Setup Python
23-
uses: actions/setup-python@v5
23+
uses: actions/setup-python@v6
2424
with:
2525
python-version: '3.12'
2626
cache: 'pip'

.github/workflows/ruff.yaml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Ruff
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
permissions:
10+
contents: read
11+
12+
jobs:
13+
ruff:
14+
name: Check for style errors and common problems
15+
runs-on: ubuntu-latest
16+
steps:
17+
- name: Checkout
18+
uses: actions/checkout@v6
19+
20+
- name: Set up Python
21+
uses: actions/setup-python@v6
22+
with:
23+
python-version: "3.12"
24+
25+
- name: Install Ruff
26+
run: |
27+
python -m pip install --upgrade pip
28+
pip install ruff>=0.8.0
29+
30+
- name: Run Ruff linter
31+
run: |
32+
ruff check .

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
html_js_files = ["gh_icon_fix.js"]
3939

4040
# Add logo
41-
html_logo = "assets/images/croppedWideLogo.png"
41+
html_logo = "source/_static/images/croppedWideLogo.png"
4242

4343
# Furo theme options
4444
html_theme_options = {

docs/index.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
HED Python Tools Documentation
2-
=================================
1+
HED Python tools
2+
================
33

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

66
.. toctree::
77
:maxdepth: 2
File renamed without changes.

0 commit comments

Comments
 (0)