ci: add empty nightly workflow (#3559)
This commit is contained in:
parent
a763f57af5
commit
c773d5c20c
1 changed files with 16 additions and 0 deletions
16
.github/workflows/nightly_build.yml
vendored
Normal file
16
.github/workflows/nightly_build.yml
vendored
Normal 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!"
|
||||
Loading…
Add table
Add a link
Reference in a new issue