From 9668e348d84e0be3d74044a17cc9c43126ed79ac Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Sun, 13 Jul 2025 10:58:52 +1000 Subject: [PATCH] Add simple test workflow to verify GitHub Actions recognition --- .github/workflows/test-simple.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/test-simple.yml diff --git a/.github/workflows/test-simple.yml b/.github/workflows/test-simple.yml new file mode 100644 index 000000000..8c4c88295 --- /dev/null +++ b/.github/workflows/test-simple.yml @@ -0,0 +1,11 @@ +name: Test Simple + +on: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Test + run: echo "Hello World" \ No newline at end of file