Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions .github/workflows/conformance.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Conformance

on:
pull_request:
types:
- opened
- synchronize
- reopened
- edited
- labeled
- unlabeled
push:
branches: [main]

permissions:
contents: read
pull-requests: read

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
conformance-policy:
uses: tempoxyz/mpp-tools/.github/workflows/sdk-conformance-policy.yml@main
with:
protocol-paths: |
src/**
pyproject.toml
uv.lock

conformance:
needs: conformance-policy
uses: tempoxyz/mpp-tools/.github/workflows/sdk-conformance.yml@main
with:
adapter: python
conformance-ref: ${{ needs.conformance-policy.outputs.conformance_ref }}