Skip to content

Commit

Permalink
Add schedule builds to CI (#320)
Browse files Browse the repository at this point in the history
Mic-4379/add schedule builds to CI

Adds nightly builds to github actions
- *Category*: CI
- *JIRA issue*: [MIC-4379](https://jira.ihme.washington.edu/browse/MIC-4379)

Changes and notes
-Adds scheduled build to github actions to run at 1AM

Testing
All tests pass
  • Loading branch information
albrja committed Sep 21, 2023
1 parent 3cb08c6 commit 47df496
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down

0 comments on commit 47df496

Please sign in to comment.