Fix: Add major refactor to DocIndex
modules.
#17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Ruff formatting | |
on: [pull_request] | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: pip install ruff | |
- run: | | |
ruff check DocIndex/ . | |
ruff check --fix DocIndex/ | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'Style fixes by Ruff' |