Skip to content

ci: share the Python matrix checks with a pre-push hook #40

ci: share the Python matrix checks with a pre-push hook

ci: share the Python matrix checks with a pre-push hook #40

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# The supported floor and the current stable release.
python-version: ["3.11", "3.13"]
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
python-version: ${{ matrix.python-version }}
- name: Shared local and CI checks
run: bash scripts/ci-local.sh "${{ matrix.python-version }}"