Skip to content

Fixes from comments #47

Fixes from comments

Fixes from comments #47

Workflow file for this run

name: python-client
on: push
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: install python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- 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