Skip to content

remove black as dev dependency and upgrade ruff #110

remove black as dev dependency and upgrade ruff

remove black as dev dependency and upgrade ruff #110

Workflow file for this run

name: QA
on:
pull_request:
push:
branches:
- main
jobs:
check-qa:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version-file: pyproject.toml
architecture: x64
- name: Install dependencies (and project)
run: |
pip install -U pip
pip install -e .[lint,scripts,test,check]
- name: Check Lint and Formatting
run: |
inv check-format
inv lint
- name: Type Check
run: inv type-check