From ee6d411f831c3bfecc0d30f8bb68f353fffbab58 Mon Sep 17 00:00:00 2001 From: Rafael Richards Date: Sun, 14 Jun 2026 07:28:22 -0400 Subject: [PATCH] ci(arch): adopt the reusable m/v waterline G1 gate MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the arch job calling vista-cloud-dev/.github arch-waterline.yml@main, so `m arch check` (the G1 dependency-direction gate) runs in CI on every push/PR — the ADR §3.3 'no exception' enforcement, not just the local make gate. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/ci.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2861d84 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,13 @@ +name: ci + +on: + push: + branches: [main] + pull_request: + +jobs: + # m/v waterline G1 gate — v-stdlib is layer v (passes trivially: v -> m is + # allowed). The engine-bound M suite (fmt/lint/test under YDB+IRIS) lands + # as v-stdlib grows real VSL* modules. + arch: + uses: vista-cloud-dev/.github/.github/workflows/arch-waterline.yml@main