From 660ac4af4b6b81b75281f57b1001ed34c692eebc Mon Sep 17 00:00:00 2001 From: albrja Date: Thu, 21 Sep 2023 11:03:04 -0700 Subject: [PATCH] Add schedule builds to CI --- .github/workflows/build.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0092e94d..6954e3fd 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,11 +1,14 @@ # ----------------------------------------------------------------------------- -# Continuous Intergration for Vivarium Inputs -# - invoked on push and pull_request +# - invoked on push, pull_request, manual trigger, or schedule # - test under at least 3 versions of python -# - look for upstream branches and use if they exist # ----------------------------------------------------------------------------- name: build -on: [push, pull_request, workflow_dispatch] +on: + push: + pull_request: + workflow_dispatch: + schedule: + - cron: "0 8 * * *" jobs: build: