From cafaf1022c6fb808e31b0fa02118a587fb8f8913 Mon Sep 17 00:00:00 2001 From: Johanna England Date: Mon, 19 Aug 2024 14:27:31 +0200 Subject: [PATCH] Run tests on schedule (daily) To make sure that all dependencies still work --- .github/workflows/build-and-test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index d6c18e1cd9..f13a376f5b 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -1,5 +1,9 @@ name: Build NAV and run full test suite -on: [push, pull_request] +on: + push: + pull_request: + schedule: # Run daily at 08:00 CEST (06:00 UST) + - cron: '0 6 * * *' jobs: build-and-test: