-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add ruff formatter and ruff linting * Update .github/workflows/ci.yml Co-authored-by: Semyon <[email protected]> * change poetry action mkdocs --------- Co-authored-by: dinjazelena <[email protected]> Co-authored-by: Semyon <[email protected]>
- Loading branch information
1 parent
8e6368c
commit b63e91b
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: python-client | ||
|
||
on: push | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
- uses: snok/install-poetry@v1 | ||
|
||
- name: install project | ||
run: | | ||
poetry install --with=dev | ||
working-directory: tsumugi-python | ||
|
||
- name: ruff check | ||
run: | | ||
poetry run ruff check tsumugi | ||
working-directory: tsumugi-python | ||
|
||
- name: ruff formatter | ||
run: | | ||
poetry run ruff format tsumugi | ||
working-directory: tsumugi-python |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters