Skip to content

fix(decisions) correct three ADR heading numbers #7

fix(decisions) correct three ADR heading numbers

fix(decisions) correct three ADR heading numbers #7

Workflow file for this run

name: CI
# Run the test suite only when changes land on main (a merged PR or a direct
# push). Tests intentionally do NOT run on pull requests — see ADR-027 for the
# trigger policy and its post-merge-feedback tradeoff. workflow_dispatch allows
# running the full battery grid manually (e.g. to check a branch before merge).
on:
push:
branches: [main]
workflow_dispatch:
# Serialize runs on the same ref. Don't cancel an in-progress run: every merge
# to main should be fully tested, since these runs are what gate releases.
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: false
jobs:
tests:
uses: ./.github/workflows/tests.yml