Skip to content

Add pre-commit, ruff check configuration and Github action #6

Add pre-commit, ruff check configuration and Github action

Add pre-commit, ruff check configuration and Github action #6

Workflow file for this run

name: ruff
on: [push, pull_request, workflow_dispatch]
permissions:
contents: read
jobs:
ruff:
name: Check code with ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: astral-sh/ruff-action@v3
with:
args: "check"