Skip to content

Feature: Support HTML, Markdown, and DOCX Document Indexing #14

Feature: Support HTML, Markdown, and DOCX Document Indexing

Feature: Support HTML, Markdown, and DOCX Document Indexing #14

Workflow file for this run

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 src/ .
ruff check --fix src/
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'Style fixes by Ruff'