From 95e0002e452ce7119c48cbef2c0727e0a48c8f3b Mon Sep 17 00:00:00 2001 From: Mike Kell Date: Sun, 29 Mar 2026 06:20:57 -0400 Subject: [PATCH] Add test Forgejo Actions workflow --- .forgejo/workflows/test.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .forgejo/workflows/test.yml diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml new file mode 100644 index 0000000..42ee618 --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,16 @@ +name: Test CI + +on: + push: + branches: + - main + +jobs: + test: + runs-on: docker + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Echo Test + run: echo "Forgejo Actions is working" \ No newline at end of file