From b30c4b9a843ad20b6217dbdc16ece53990c2144d Mon Sep 17 00:00:00 2001 From: Ken Johnson Date: Wed, 5 Mar 2025 09:25:39 -0800 Subject: [PATCH] Initial Testing --- .gitea/workflows/main.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .gitea/workflows/main.yaml diff --git a/.gitea/workflows/main.yaml b/.gitea/workflows/main.yaml new file mode 100644 index 0000000..b47de3c --- /dev/null +++ b/.gitea/workflows/main.yaml @@ -0,0 +1,16 @@ +name: Test CI/CD + +on: + push: + branches: + - main + +jobs: + test: + runs-on: self-hosted + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Hello World + run: echo "Hello, CI/CD!"