From d469f969f5dd22ea01f13cd8a09496266aad5326 Mon Sep 17 00:00:00 2001 From: Julien Schueller Date: Fri, 8 Sep 2023 13:43:43 +0200 Subject: [PATCH] cron --- .github/workflows/cmake.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 6b3722433f..e711a9966e 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -1,6 +1,10 @@ name: CMake build -on: [push, pull_request] +on: + push: + pull_request: + schedule: + - cron: '*/5 * * * *' permissions: contents: read @@ -42,6 +46,7 @@ jobs: cmake --build . --target install --parallel 4 cmake --build . --target tests --parallel 4 ctest --output-on-failure -V -j4 + env env: FC: ${{ steps.setup-fortran.outputs.fc }}