Add test workflow

This commit is contained in:
2025-08-27 03:34:14 +03:00
parent 03875dde53
commit 243f89457f

17
.gitea/workflows/test.yml Normal file
View File

@@ -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 }}"