From 27f152fb26cc10398aa68b2b2018b5077f2b0736 Mon Sep 17 00:00:00 2001 From: Cody Gibbs Date: Fri, 27 Mar 2026 17:56:23 -0400 Subject: [PATCH] testing actions --- .gitea/workflows/test.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 3e7aaee..6ddd29b 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,11 +1,17 @@ -name: test +name: Test Workflow on: push: + branches: + - main # only triggers on pushes to the main branch jobs: hello: - runs-on: ubuntu-latest + runs-on: ubuntu-latest # can also use ubuntu-22.04 or ubuntu-20.04 steps: - - run: echo "hello" + - name: Checkout code + uses: actions/checkout@v3 + + - name: Say hello + run: echo "Hello from the Gitea runner!"