From 741b98218294a7e5c8674e9c57f00525a0b13ab2 Mon Sep 17 00:00:00 2001 From: Jan Nidzwetzki Date: Thu, 21 Sep 2023 14:54:23 +0200 Subject: [PATCH] Run scheduled windows test Our nightly windows tests have not been running for several months, causing the status badge in our readme to remain in a failing state without ever turning green. This pull request enables the daily scheduled windows builds once again. --- .github/workflows/windows-build-and-test.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/windows-build-and-test.yaml b/.github/workflows/windows-build-and-test.yaml index 0a04a074ecb..3a5be1a1b38 100644 --- a/.github/workflows/windows-build-and-test.yaml +++ b/.github/workflows/windows-build-and-test.yaml @@ -1,10 +1,14 @@ # Test building the extension on Windows name: Regression Windows "on": + schedule: + # run daily 0:00 on main branch + - cron: '0 0 * * *' push: branches: - main - prerelease_test + - trigger/windows_tests paths-ignore: - '**.md' - 'LICENSE*'