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
6 changes: 5 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: CI
on:
push:
branches: [main]
# Also run on PRs into long-lived feature branches, not just main. Stacked
# PRs (a chain like feat/a <- feat/b <- feat/c) otherwise get no test, lint,
# or security run at all until the parent merges and the child is retargeted
# — so the branches carrying the most work are the ones never gated.
pull_request:
branches: [main]
branches: [main, 'feat/**']

jobs:
# Doc/flag correctness is enforced as a hard gate by cmd/doccontract_test.go,
Expand Down
Loading