Skip to content

Public API tests

Public API tests #24

Workflow file for this run

name: Public API tests
on:
push:
branches: [main]
pull_request:
schedule:
- cron: "17 6 * * *" # daily live smoke of the public API
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install -e . pytest
- run: pytest tests/ -v