From 2bd83b77973c7d83bf75c804672014e31e8e2730 Mon Sep 17 00:00:00 2001 From: Dread Date: Thu, 18 Jun 2026 09:22:21 -0700 Subject: [PATCH] ci: run Check Code + Test on push to main Add main to the push trigger for the core check-code and test workflows so main's own tip is continuously validated, not only PRs into it. Lands on main via #621 (feat/fygaro -> main). Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/check-code.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-code.yml b/.github/workflows/check-code.yml index cf8a209eb..6848a5e11 100644 --- a/.github/workflows/check-code.yml +++ b/.github/workflows/check-code.yml @@ -1,7 +1,7 @@ name: "Check code" on: push: - branches: [feat/fygaro] + branches: [feat/fygaro, main] pull_request: branches: [main, feat/fygaro] jobs: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e7e80e585..d06811457 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,7 +1,7 @@ name: "Test" on: push: - branches: [feat/fygaro] + branches: [feat/fygaro, main] pull_request: branches: [main, feat/fygaro] jobs: