Start 1.3.0 #46
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
name: Code quality check | |
on: | |
push: | |
branches: main | |
pull_request: | |
branches: main | |
jobs: | |
run-quality-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.11" | |
- name: "Check Code Quality" | |
run: | | |
python3 -m pip install -r requirements-dev.txt | |
python3 -m isort ./ --check | |
python3 -m black ./ --check | |
python3 -m ruff check ./ | |
python3 -m pip install . | |
python3 -m mypy oneliner |