Run GitHub actions also on pull requests

The push trigger didn't seem to work for PRs based in outside repos. So
limit the push trigger to master and next and enable a PR trigger.
This commit is contained in:
Ilya Lipnitskiy 2021-04-09 19:26:21 -07:00
parent 7c6b54b162
commit 50851e47bc
No known key found for this signature in database
GPG Key ID: 435C02AAE7CF2014

View File

@ -1,6 +1,10 @@
name: Test Build
on:
push:
branches:
- master
- next
pull_request:
schedule:
- cron: '0 0 * * 0' # Every Sunday at 00:00
jobs: