Skip to content

Merge origin/claude/modern-fetch-api: Add Polars and PyArrow insert s… #709

Merge origin/claude/modern-fetch-api: Add Polars and PyArrow insert s…

Merge origin/claude/modern-fetch-api: Add Polars and PyArrow insert s… #709

Workflow file for this run

name: Lint
on:
push:
branches:
- "**" # every branch
- "!gh-pages" # exclude gh-pages branch
- "!stage*" # exclude branches beginning with stage
pull_request:
branches:
- "**" # every branch
- "!gh-pages" # exclude gh-pages branch
- "!stage*" # exclude branches beginning with stage
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
# enforce the same check as pre-commit
# but only run important checks
- uses: pre-commit/[email protected]
with:
extra_args: codespell --all-files
- uses: pre-commit/[email protected]
with:
extra_args: ruff --all-files
- uses: pre-commit/[email protected]
with:
extra_args: ruff-format --all-files