From cf058239d14f3957e69848c81bae42afe4270a30 Mon Sep 17 00:00:00 2001 From: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com> Date: Fri, 20 Feb 2026 16:40:05 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Always=20run=20tests=20on=20push?= =?UTF-8?q?=20to=20`master`=20branch=20and=20when=20run=20by=20scheduler?= =?UTF-8?q?=20(#14940)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 338f6c390f..d61b4add94 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,7 @@ jobs: test: needs: - changes - if: needs.changes.outputs.src == 'true' + if: needs.changes.outputs.src == 'true' || github.ref == 'refs/heads/master' strategy: matrix: os: [ windows-latest, macos-latest ]