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

This commit is contained in:
Boris D
2025-10-13 16:56:53 +03:00
parent bddd808484
commit 2de339418e

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