Skip to content

chg: upped version. #272

chg: upped version.

chg: upped version. #272

Workflow file for this run

name: build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
python-version: [ '3.10', '3.11', '3.12', '3.13', '3.14' ]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install build environment
run: |
python -m pip install --upgrade pip
python -m pip install uv
- name: Build and test with uv.
run: |
uv run ruff check
uv build