From 493ee9f668f5ff536ba349aa1fd911033ca64bd6 Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Wed, 4 Mar 2020 22:35:05 +0200 Subject: [PATCH] Enable CI tests on pull requests and weekly (#13) * Pull requests from foreign repositories weren't being tested. :( * Also test master branch on weekly schedule --- .github/workflows/tests.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a71ca0d..f0bc52f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,5 +1,14 @@ name: Tests -on: [push] +on: + push: + branches: [master] + pull_request: + schedule: + # 16:21 UTC on Tuesdays + - cron: "21 16 * * tue" + repository_dispatch: + types: [tests] + env: DOCKER_BUILDKIT: 1 jobs: