Files
sgeUpdated/.gitea/workflows/test.yml
Workflow config file is invalid. Please check your config file: yaml: line 17: mapping values are not allowed in this context
Abdulbari 243f89457f
Some checks failed
CI/CD Pipeline / deploy_testing (push) Has been skipped
CI/CD Pipeline / deploy_production (push) Failing after 40s
Add test workflow
2025-08-27 03:34:14 +03:00

17 lines
317 B
YAML

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