Merge pull request 'feat: add initial test runner workflow for CI/CD integration' (#4) from test_runner into main
Some checks failed
Test Runner / hello-world (push) Has been cancelled

Reviewed-on: http://192.168.0.16:3000/lborv/low-code-engine/pulls/4
This commit is contained in:
2025-10-13 13:57:40 +00:00

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

@ -0,0 +1,28 @@
name: Test Runner
on:
push:
branches:
- main
jobs:
hello-world:
runs-on: [linux, amd64]
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Print environment info
run: |
echo "🏗️ Runner is working!"
echo "User: $(whoami)"
echo "OS: $(uname -a)"
echo "Current directory: $(pwd)"
echo "Files here:"
ls -la
- name: Test multiple commands
run: |
echo "Step 1 complete ✅"
echo "Step 2 complete ✅"
echo "All good!"