commit b30c4b9a843ad20b6217dbdc16ece53990c2144d Author: Ken Johnson Date: Wed Mar 5 09:25:39 2025 -0800 Initial Testing 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!"