We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21ee75c commit d31ee43Copy full SHA for d31ee43
.github/workflows/quality_check.yml
@@ -63,6 +63,8 @@ jobs:
63
run: make dev-quality-code
64
- name: Checking third-party library licenses
65
run: make check-licenses
66
+ - name: Checking and enforcing format
67
+ run: make format-check
68
- name: Formatting and Linting
69
run: make lint
70
- name: Static type checking
Makefile
@@ -25,6 +25,9 @@ dev-gitpod:
25
check-licenses:
26
poetry run licensecheck -u poetry:dev
27
28
+format-check:
29
+ poetry run ruff format aws_lambda_powertools tests examples --check
30
+
31
format:
32
poetry run ruff format aws_lambda_powertools tests examples
33
0 commit comments