mirror of
https://github.com/amazon-science/chronos-forecasting
synced 2026-05-24 01:58:27 +00:00
Update ci.yml with schedule (#95)
*Description of changes:* Run CI at 8 AM UTC every day. By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. Co-authored-by: Lorenzo Stella <stellalo@amazon.com>
This commit is contained in:
parent
0ea0adb9b3
commit
c63145aeb9
1 changed files with 7 additions and 1 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -1,6 +1,12 @@
|
|||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
branches: ["**"] # Run on any branch
|
||||
pull_request:
|
||||
branches: ["**"] # Run on any branch
|
||||
schedule:
|
||||
- cron: "0 8 * * *" # Run at 8 AM UTC
|
||||
|
||||
jobs:
|
||||
type-check:
|
||||
|
|
|
|||
Loading…
Reference in a new issue