From 272899611c1476e473bf237d8e6ef0b4dfb1091a Mon Sep 17 00:00:00 2001 From: Kourosh Torabijafroudi Date: Sun, 9 Aug 2026 23:57:48 +0200 Subject: [PATCH] add workflow runner gitea --- .gitea/workflows/deploy.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/deploy.yml diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml new file mode 100644 index 0000000..bf9f432 --- /dev/null +++ b/.gitea/workflows/deploy.yml @@ -0,0 +1,17 @@ +name: Test CI CD + +on: + push: + branches: + - main + +jobs: + test-job: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v3 + + - name: Run a simple test + run: | + echo "CI/CD is working perfectly on Gitea!" \ No newline at end of file