Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 3 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,19 +21,16 @@ jobs:
- uses: aevea/[email protected]

pre-commit:
name: Generic pre-commit checks
name: Pre-commit checks
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 1

- uses: actions/setup-python@v6
with:
python-version: 3.11
- uses: astral-sh/setup-uv@v6

- run: pip install pre-commit
- run: SKIP=fmt,cargo-check,clippy pre-commit run --all-files
- run: SKIP=fmt,cargo-check,clippy uvx prek run --all-files

eslint:
name: ESLint
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ default_language_version:

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
rev: v6.0.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
Expand All @@ -30,11 +30,11 @@ repos:
- id: yamllint

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.1
rev: v0.14.10
hooks:
- id: ruff-format

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.1
rev: v0.14.10
hooks:
- id: ruff
Loading