diff --git a/.github/workflows/nightly_build.yml b/.github/workflows/nightly_build.yml new file mode 100644 index 000000000..98c77395d --- /dev/null +++ b/.github/workflows/nightly_build.yml @@ -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!"