Add python lint

This commit is contained in:
Jeong YunWon
2023-05-06 14:34:31 +09:00
parent 6b60f85cc4
commit a73bac9ed1
3 changed files with 11 additions and 3 deletions

View File

@@ -54,3 +54,11 @@ jobs:
run: cargo fmt --all -- --check
- name: run clippy
run: cargo clippy --all --all-features -- -Dwarnings
- uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: install ruff
run: python -m pip install ruff
- name: run python lint
run: ruff --ignore=E501 ast --show-source