Skip to content

Integration Tests

Integration Tests #4

Workflow file for this run

name: Integration Tests
on:
workflow_dispatch:
schedule:
- cron: "0 9 * * 1"
permissions:
contents: read
jobs:
integration:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python 3.12
run: uv python install 3.12
- name: Install dependencies
run: uv sync --frozen --group test
- name: Run integration tests
run: uv run pytest -m integration