Skip to content

Live API Contract Tests #2

Live API Contract Tests

Live API Contract Tests #2

Workflow file for this run

name: Live API Contract Tests
on:
schedule:
- cron: '0 6 * * 1' # Every Monday at 06:00 UTC
workflow_dispatch:
jobs:
live-api:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.14"
- name: Install package
run: |
python -m pip install --upgrade pip
pip install -e . --group test
- name: Run live API contract tests
run: pytest -m live_api -v