Skip to content

Commit c148353

Browse files
committed
add formatting and linting to python actions
1 parent b010250 commit c148353

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,12 @@ jobs:
7777
- name: Installing poetry dependencies
7878
working-directory: ./sdk/ahnlich-client-py
7979
run: poetry install
80+
81+
- name: Check Python Linting
82+
working-directory: ./sdk/ahnlich-client-py
83+
run: |
84+
poetry run isort . -c --profile black; echo $?
85+
poetry run black . --check; echo $?
8086
8187
- name: Set up Rust cache
8288
uses: Swatinem/rust-cache@v2

0 commit comments

Comments
 (0)