Skip to content

Commit

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

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

Changes and notes
-Adds schedule build to CI to run at 1AM

Testing
All tests pass
  • Loading branch information
albrja committed Sep 21, 2023
1 parent f6c2ead commit 9e31c9c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# -----------------------------------------------------------------------------
# - invoked on push, pull_request, or manual trigger
# - test under n-1,n,n+1 (at least 3) versions of python
# - invoked on push, pull_request, manual trigger, or schedule
# - test under at least 3 versions of python
# -----------------------------------------------------------------------------
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 9e31c9c

Please sign in to comment.