Skip to content

v1.2.0

v1.2.0 #228

Workflow file for this run

name: Build
on:
push:
branches: [ "main", "release"]
paths:
- '.github/workflows/build.yml'
- 'src/**'
- 'Makefile'
- 'pyproject.toml'
- 'uv.lock'
pull_request:
branches: [ "main", "release"]
paths:
- '.github/workflows/build.yml'
- 'src/**'
- 'Makefile'
- 'pyproject.toml'
- 'uv.lock'
jobs:
test_build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Set up uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Local build checking
run: make build