tweaked ci to run once daily in addition to on pushes

This commit is contained in:
Eric Froemling 2019-12-13 17:24:10 -08:00
parent f32da15d78
commit 5c142d42cc

View File

@ -1,7 +1,12 @@
name: CI
on: [push]
on:
# Run on pushes and also once per day (in case deps change under us)
- push
- schedule:
# Note: * is a special character in YAML so we have to quote the str.
- cron: '0 4 * * *'
jobs:
check: