ci: add empty nightly workflow (#3559)

This commit is contained in:
Jordan Frazier
2024-08-26 14:41:08 -07:00
committed by GitHub
parent a763f57af5
commit c773d5c20c

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!"