ci: add empty nightly workflow (#3559)

This commit is contained in:
Jordan Frazier 2024-08-26 14:41:08 -07:00 committed by GitHub
commit c773d5c20c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

16
.github/workflows/nightly_build.yml vendored Normal file
View file

@ -0,0 +1,16 @@
name: Nightly Build
on:
schedule:
- cron: "0 0 * * *" # Run every day at midnight (UTC)
env:
POETRY_VERSION: "1.8.2"
jobs:
hello-world:
runs-on: ubuntu-latest
steps:
- name: Run hello world
run: |
echo "Hello, world!"