Skip to content

Commit

Permalink
add ruff formatter and ruff linting
Browse files Browse the repository at this point in the history
  • Loading branch information
dinjazelena committed Sep 19, 2024
1 parent 8e6368c commit 7e75666
Showing 1 changed file with 26 additions and 0 deletions.
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: CI-PYTHON

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

0 comments on commit 7e75666

Please sign in to comment.