feat: add initial test runner workflow for CI/CD integration #4

Merged
lborv merged 1 commits from test_runner into main 2025-10-13 13:57:41 +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!"