Skip to content

use delocate 0.11 as cibuildwheel 2.20 requires it (constraint) #12

use delocate 0.11 as cibuildwheel 2.20 requires it (constraint)

use delocate 0.11 as cibuildwheel 2.20 requires it (constraint) #12

Workflow file for this run

name: QA
on: [push]
env:
LIBZIM_DL_VERSION: "9.2.3-2"
MACOSX_DEPLOYMENT_TARGET: "12.0"
jobs:
lint:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v5
with:
python-version: "3.12"
architecture: x64
- name: Install dependencies (and project)
run: |
pip install -U pip
pip install -e .[lint,scripts,test,check]
- name: Check black formatting
run: inv lint-black
- name: Check ruff
run: inv lint-ruff
- name: Check pyright
run: inv check-pyright