# CI — thin wrapper that calls the reusable test workflow.
#
# All test jobs (lint, cross-platform tests, backend compile gates, parity,
# examples) live in test.yml to avoid duplication across ci.yml, benchmark.yml,
# baseline.yml, and release.yml.
name: CI
on:
pull_request:
branches:
types:
workflow_dispatch:
workflow_call:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
test:
if: github.event.pull_request.draft == false
name: Test Suite
uses: ./.github/workflows/test.yml