Skip to content

Weekly Tests

Weekly Tests #253

Workflow file for this run

name: Weekly Tests
on:
workflow_dispatch:
schedule:
# Runs every friday
- cron: "0 0 * * 5"
jobs:
test:
name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: actions/checkout@v7
- name: Install uv
uses: astral-sh/setup-uv@v9.0.0
with:
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: uv sync --dev
- name: Run pytest
run: uv run pytest