Skip to content

Update uv.lock

Update uv.lock #10

name: Test Quadrupole Functions
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.13", "3.14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install uv and Setup Python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v7
with:
version: "0.9.24"
python-version: ${{ matrix.python-version }}
- name: Install project and all dependencies
run: uv sync --locked --all-extras --dev
- name: Run tests with pytest
run: uv run pytest tests/test_quadrupole.py