Skip to content

Commit d31ee43

Browse files
Enable Ruff format
1 parent 21ee75c commit d31ee43

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/quality_check.yml

+2
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ jobs:
6363
run: make dev-quality-code
6464
- name: Checking third-party library licenses
6565
run: make check-licenses
66+
- name: Checking and enforcing format
67+
run: make format-check
6668
- name: Formatting and Linting
6769
run: make lint
6870
- name: Static type checking

Makefile

+3
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ dev-gitpod:
2525
check-licenses:
2626
poetry run licensecheck -u poetry:dev
2727

28+
format-check:
29+
poetry run ruff format aws_lambda_powertools tests examples --check
30+
2831
format:
2932
poetry run ruff format aws_lambda_powertools tests examples
3033

0 commit comments

Comments
 (0)