Check consistency on 3.12 #62
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 style | |
concurrency: | |
group: on_push | |
cancel-in-progress: true | |
on: | |
push: {} | |
workflow_dispatch: {} | |
jobs: | |
unit-tests: | |
name: Code style | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
include: | |
- version: "3.12" | |
check-consistency: "true" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.version }} | |
allow-prereleases: true | |
- name: Set up uv | |
run: curl -LsSf https://astral.sh/uv/install.sh | sh | |
- name: Install the project | |
run: | | |
uv sync --all-extras --dev | |
- name: Run pre-commit | |
run: uv run pre-commit run --all-files | |
- name: Stubs consistency check | |
if: ${{ matrix.check-consistency }} | |
run: | | |
uv run istub -d |