From 29a1171d6e75cba99af43c4924a870bca90502a0 Mon Sep 17 00:00:00 2001 From: Ahsan Date: Tue, 14 Apr 2026 13:07:02 +0600 Subject: [PATCH] add sample actions workflow --- .gitea/workflows/sample.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/sample.yml diff --git a/.gitea/workflows/sample.yml b/.gitea/workflows/sample.yml new file mode 100644 index 0000000..6272347 --- /dev/null +++ b/.gitea/workflows/sample.yml @@ -0,0 +1,12 @@ +name: Test Gitea Actions +on: [push] +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: List files + run: ls -la + - name: Done + run: echo "Gitea Actions working on 1.25.5!"