From 426d5d5a2121be530a642c6568a08815575a0e62 Mon Sep 17 00:00:00 2001 From: Miheichev Aleksandr Sergeevich Date: Sat, 29 Aug 2026 01:42:40 +0000 Subject: [PATCH] ci: run the test job on pushes to master (#10054) The Code Test workflow only has a pull_request trigger, so the suite never runs against master itself: a direct push is untested, and a merge can break tests even when the pull request's own check was green, because checks run on the PR head rather than on the merged result. Add a push trigger for master with the same paths filter. Co-authored-by: Claude Fable 5 --- .github/workflows/test.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea645447..0623c86a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,17 @@ name: Code Test on: + push: + branches: + - master + paths: + - 'v2rayN/ServiceLib/**' + - 'v2rayN/ServiceLib.UdpTest/**' + - 'v2rayN/ServiceLib.Tests/**' + - 'v2rayN/Directory.Build.*' + - 'v2rayN/Directory.Packages.props' + - 'global.json' + - '.github/workflows/test.yml' pull_request: branches: - master