Skip to content

style: lint Python code with Ruff #11

style: lint Python code with Ruff

style: lint Python code with Ruff #11

Workflow file for this run

name: Ruff check and auto-fix
on: push
jobs:
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: chartboost/ruff-action@v1
with:
args: check --fix --show-fixes --output-format=github
src: tool
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "style: lint code with Ruff"