From b57baad8411ff5366fe81be58fc6f4f49ea13426 Mon Sep 17 00:00:00 2001 From: Alex Selimov Date: Sat, 12 Jul 2025 16:09:13 -0400 Subject: [PATCH] Add test workflow --- .forgejo/workflows/test.yml | 8 ++++++++ 1 file changed, 8 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..026a773 --- /dev/null +++ b/.forgejo/workflows/test.yml @@ -0,0 +1,8 @@ +name: Test Runner +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Simple test + run: echo "Hello World"