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:
Abdul Fatir 2024-06-03 09:16:36 +02:00 committed by GitHub
parent 0ea0adb9b3
commit c63145aeb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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: