From e69574285b72eeef9c87fc2204bd2b71a9ad6cef Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 17 Sep 2024 16:05:56 +0100 Subject: [PATCH] test: add skeleton self-test --- .forgejo/workflows/push-next.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .forgejo/workflows/push-next.yml diff --git a/.forgejo/workflows/push-next.yml b/.forgejo/workflows/push-next.yml new file mode 100644 index 0000000..6d287f1 --- /dev/null +++ b/.forgejo/workflows/push-next.yml @@ -0,0 +1,18 @@ +name: Test + +on: + push: + branches: + - next + +jobs: + + test: + runs-on: docker + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Check TODOs + uses: git.kemitix.net/kemitix/forgejo-todo-checker@next