Skip to content

Merge branch 'release/7.0.0' #19

Merge branch 'release/7.0.0'

Merge branch 'release/7.0.0' #19

Workflow file for this run

name: Test
on:
push:
branches:
- master
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install UV
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
- name: Sync project environment with UV
run: |
uv sync
- name: Run tests
run: |
uv run pytest