From e89722f9dccb5dfeb12ec67b7ba57800cbcafb79 Mon Sep 17 00:00:00 2001 From: Tomas Rezucha Date: Fri, 15 Nov 2024 11:04:46 +0100 Subject: [PATCH] feat(ci): Build and run target tests everyday In https://github.com/espressif/esp-usb/pull/75 we refactored the test runners' configuration. We want to run the test more frequently so we can evaluate their stability. This entire commit can be reverted after the evaluation period is over (in couple of weeks). --- .github/workflows/build_and_run_test_app_usb.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build_and_run_test_app_usb.yml b/.github/workflows/build_and_run_test_app_usb.yml index b20546a2..9bd1ccd8 100644 --- a/.github/workflows/build_and_run_test_app_usb.yml +++ b/.github/workflows/build_and_run_test_app_usb.yml @@ -2,7 +2,7 @@ name: Build and Run USB Test Application on: schedule: - - cron: '0 0 * * SAT' # Saturday midnight + - cron: '0 0 * * *' # Every day at midnight pull_request: types: [opened, reopened, synchronize]