From 72b4eb142f139fd200e3068d99d2473557b83a6d Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Wed, 18 Feb 2026 23:10:32 +0100 Subject: [PATCH] Always run tests on push to `master` branch and when run by scheduler --- .github/workflows/test.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 338f6c390..1734529d0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -45,7 +45,10 @@ jobs: test: needs: - changes - if: needs.changes.outputs.src == 'true' + if: | + needs.changes.outputs.src == 'true' || + github.event_name == 'schedule' || + (github.event_name == 'push' && github.ref == 'refs/heads/master') strategy: matrix: os: [ windows-latest, macos-latest ]