Skip to content

fix: update download-artifact action to v7 and enhance release verifi… #92

fix: update download-artifact action to v7 and enhance release verifi…

fix: update download-artifact action to v7 and enhance release verifi… #92

Workflow file for this run

name: Pytest
on:
pull_request:
push:
branches:
- master
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest, windows-11-arm]
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v6
with:
submodules: true
- name: Set up uv
uses: astral-sh/setup-uv@v7
- name: Setup Python ${{ matrix.python }}
run: uv python install ${{ matrix.python }}
- name: Build and install
run: uv sync --group dev
- name: Test with pytest
run: uv run pytest