Skip to content

chore: add github action #1

chore: add github action

chore: add github action #1

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
test:
name: build and test
strategy:
fail-fast: false
matrix:
python-version: ["3.11", "3.12", "3.13"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
name: checkout
- uses: dtolnay/rust-toolchain@stable
name: get rust
- uses: astral-sh/setup-uv@v7
name: get uv
with:
python-version: ${{ matrix.python-version }}
- name: test
run: uv run --frozen pytest