From b9822131eea33aa3cf9540a8385bdba653e0b2b7 Mon Sep 17 00:00:00 2001 From: Brandon Corbett Date: Mon, 29 Jun 2026 18:31:19 +0200 Subject: [PATCH] ci: run seamless verify conformance matrix on PRs --- .github/workflows/conformance.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/conformance.yml diff --git a/.github/workflows/conformance.yml b/.github/workflows/conformance.yml new file mode 100644 index 0000000..0e4a9cb --- /dev/null +++ b/.github/workflows/conformance.yml @@ -0,0 +1,12 @@ +# Run the cross-repo conformance matrix on PRs, testing this repo's change against +# the rest of the ecosystem. The reusable workflow lives in seamless-cli. +name: conformance + +on: + pull_request: + +jobs: + verify: + uses: fells-code/seamless-cli/.github/workflows/verify-conformance.yml@main + with: + server-ref: ${{ github.event.pull_request.head.sha }}