diff --git a/tools/ci/.pre-commit-ubuntu.yaml b/tools/ci/.pre-commit-ubuntu.yaml index 8f9f18b9..f9aa5084 100644 --- a/tools/ci/.pre-commit-ubuntu.yaml +++ b/tools/ci/.pre-commit-ubuntu.yaml @@ -9,33 +9,33 @@ repos: language: system pass_filenames: false - - id: fix_format + - id: format + name: format stages: [push] - name: fix_format entry: .venv/bin/python - args: ["-m", "pdm", "run", "fix_format"] + args: ["-m", "pdm", "run", "format"] language: system pass_filenames: false - id: lint - stages: [push] name: lint + stages: [push] entry: .venv/bin/python args: ["-m", "pdm", "run", "lint"] language: system pass_filenames: false - id: type - stages: [push] name: type + stages: [push] entry: .venv/bin/python args: ["-m", "pdm", "run", "type"] language: system pass_filenames: false - id: test - stages: [push] name: test + stages: [push] entry: .venv/bin/python args: ["-m", "pdm", "run", "test"] language: system