From 837353bc45557193a7169a080adc2319d125dedb Mon Sep 17 00:00:00 2001 From: Abdulbari Date: Wed, 27 Aug 2025 03:02:45 +0300 Subject: [PATCH] Add test workflow --- .gitea/workflows/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..7847fcf --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,17 @@ +name: Test Pipeline + +on: + push: + branches: + - develop # only runs when you push to develop + +jobs: + test: + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@v3 + + - name: Print Hello + run: echo "✅ Pipeline is working on branch: ${{ github.ref }}" \ No newline at end of file