ci: add test workflow for Gitea Actions

This commit is contained in:
root 2026-03-23 15:35:31 +00:00
parent 13ef256b3d
commit 1742db7052

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

@ -0,0 +1,27 @@
name: Test CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Hello from Runner
run: |
echo "🎉 Hello from much-data-runner!"
echo "Runner is working!"
echo "Python version:"
python3 --version
- name: Test Python
run: |
echo "Testing Python setup..."
python3 -c "print('✅ Python works!')"