forked from mrpowers-io/tsumugi-spark
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dinjazelena
committed
Sep 19, 2024
1 parent
8e6368c
commit 7e75666
Showing
1 changed file
with
26 additions
and
0 deletions.
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: 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 |