Skip to content

Fix precedence naming in expr_unparse.py #44

Fix precedence naming in expr_unparse.py

Fix precedence naming in expr_unparse.py #44

Workflow file for this run

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