Skip to content

Commit

Permalink
Enable CI tests on pull requests and weekly (#13)
Browse files Browse the repository at this point in the history
* Pull requests from foreign repositories weren't being tested. :(
* Also test master branch on weekly schedule
  • Loading branch information
intgr authored Mar 4, 2020
1 parent 9dcad97 commit 493ee9f
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 493ee9f

Please sign in to comment.