Skip to content

Commit e34fb66

Browse files
committed
Skip formatting step in workflow pre-commit
1 parent 34ad6db commit e34fb66

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
- name: Install dependencies
8484
run: pip install pre-commit
8585
- name: Run pre-commit checks
86-
run: pre-commit run --all-files
86+
run: SKIP=ruff-format pre-commit run --all-files
8787

8888
ui-precommit-check:
8989
permissions:

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- name: Install dependencies
5353
run: pip install pre-commit
5454
- name: Run pre-commit checks
55-
run: pre-commit run --all-files
55+
run: SKIP=ruff-format pre-commit run --all-files
5656

5757
unit-tests:
5858
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)