Skip to content

fix: use semantic release GH actions #104

fix: use semantic release GH actions

fix: use semantic release GH actions #104

Workflow file for this run

name: Test
on:
pull_request:
branches: ["main"]
types: [opened, synchronize, reopened, ready_for_review]
jobs:
test:
if: github.event_name != 'pull_request' || github.event.pull_request.draft == false
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.13"] # Min and max supported versions
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make install
- name: Test
run: make test