Weekly test of master to check for external failures

Test failures can sometimes be quite hard to debug. By adding a weekly automated test run of the default branch we'll have a bit more information on whether a PR is failing due to a change in that PR or due to some external factor.
pull/998/head
Simon Li 2021-01-04 22:35:10 +00:00
rodzic 560b1d96a0
commit 58dca8be5d
1 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -7,10 +7,13 @@
name: Continuous Integration
# Only trigger the workflow when pushing to master
on:
- push
- pull_request
push:
pull_request:
schedule:
# Weekly test so we know if tests break for external reasons
# https://docs.github.com/en/free-pro-team@latest/actions/reference/events-that-trigger-workflows#scheduled-events
- cron: '36 10 * * 0'
# Global environment variables
env: