diff options
-rw-r--r-- | .github/workflows/scheduled-tasks.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/scheduled-tasks.yml b/.github/workflows/scheduled-tasks.yml new file mode 100644 index 0000000..5ff2cb4 --- /dev/null +++ b/.github/workflows/scheduled-tasks.yml @@ -0,0 +1,15 @@ +name: Test +run-name: Tests +on: + schedule: + - cron: '*/5 * * * *' + workflow_dispatch: +jobs: + Do-snapshot: + name: "test" + runs-on: ubuntu-latest + steps: + # - uses: actions/checkout@v3 + - name: Run + run: | + curl http://github-actions-test.dev.snart.me/ |