Add test workflow

This commit is contained in:
2025-08-27 03:02:45 +03:00
parent 2459ba092b
commit 837353bc45

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