diff options
author | David Timber <dxdt@dev.snart.me> | 2024-11-12 00:47:43 +0100 |
---|---|---|
committer | David Timber <dxdt@dev.snart.me> | 2024-11-12 00:56:58 +0100 |
commit | b4a98534268fbab63f87f0eee0f826bb36dd97a2 (patch) | |
tree | d72375e15f47c361e847e5979622e5ca34f8b775 /.github |
Initial commit
Diffstat (limited to '.github')
-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/ |