From 7f7b486566822258fcd79748961d7c77334bdcad Mon Sep 17 00:00:00 2001 From: Michael Neuling Date: Mon, 11 Oct 2021 09:41:41 +1100 Subject: [PATCH] ci: Run workflow on PR and schedule Signed-off-by: Michael Neuling --- .github/workflows/test.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a1327f5..3913766 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,5 +1,12 @@ name: test -on: [push] + +on: + push: + pull_request: + schedule: + - cron: '0 0 * * 5' + workflow_dispatch: + jobs: Unittests: runs-on: ubuntu-latest