Skip to content

Commit

Permalink
add CI/CD for python code (#24)
Browse files Browse the repository at this point in the history
* 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
3 people authored Sep 19, 2024
1 parent 8e6368c commit b63e91b
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/ci.yml
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
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
python-version: '3.11'

- name: Set up Poetry
uses: abatilo/actions-poetry@v3
uses: snok/install-poetry@v1
with:
poetry-version: 1.8.2

Expand Down

0 comments on commit b63e91b

Please sign in to comment.