From 1742db705215a4ce35b1c4684b7391a81d69b7e4 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 23 Mar 2026 15:35:31 +0000 Subject: [PATCH] ci: add test workflow for Gitea Actions --- .gitea/workflows/test.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 0000000..5ed8ef7 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -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!')"