From b0ff5e538072bf4940469f130baa8a7b41a90937 Mon Sep 17 00:00:00 2001 From: ProtoTess <32490978+0x524A@users.noreply.github.com> Date: Mon, 1 Dec 2025 03:24:39 +0000 Subject: [PATCH] test: add minimal workflow to test GitHub Actions execution --- .github/workflows/test-simple.yml | 14 ++++++++++++++ 1 file changed, 14 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 0000000..762c7b9 --- /dev/null +++ b/.github/workflows/test-simple.yml @@ -0,0 +1,14 @@ +name: Simple Test + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + simple: + runs-on: ubuntu-latest + steps: + - name: Echo test + run: echo "Hello from GitHub Actions"