🏗️ test gitea actions and act runner

This commit is contained in:
RJ
2025-10-27 11:22:01 +02:00
parent c672a9e2df
commit d7f094a5b3

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

@@ -0,0 +1,21 @@
name: Test CI Pipeline
on: [push]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Run test
run: |
echo "Hello from Gitea Actions!"
echo "Runner: $(hostname)"
echo "Working directory: $(pwd)"
ls -la
- name: Test Docker
run: |
docker --version
echo "Docker is available in CI!"