Skip to content

test: check if code is API breaking #2

test: check if code is API breaking

test: check if code is API breaking #2

Workflow file for this run

name: API Contract
on:
push:
branches: ["main"]
pull_request:
merge_group:
permissions:
contents: read
jobs:
api-contract:
name: Check public API route contract
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Verify public API contract
run: python test/test_api_contract.py