From f1583bc1f52a1802650ad6db1ae812120527bd01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Val=C3=A9rian=20Rey?= Date: Fri, 6 Mar 2026 14:44:58 +0100 Subject: [PATCH] Make Code quality check run pre-commit --- .github/workflows/checks.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 5e78f864..1f68ee15 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -114,7 +114,7 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} code-quality: - name: Code quality (ty and ruff) + name: Code quality (ty and pre-commit hooks) runs-on: ubuntu-latest steps: - name: Checkout repository @@ -129,8 +129,8 @@ jobs: with: groups: check test plot + - name: Run pre-commit hooks + run: uv run pre-commit run --all-files + - name: Run ty run: uv run ty check --output-format=github - - - name: Run ruff - run: uv run ruff check --output-format=github