Minimal hello world workflow to test Gitea Actions
All checks were successful
CI / test (push) Successful in 1s

This commit is contained in:
2026-02-01 05:22:28 +00:00
parent 64d1fa488b
commit 464b4ef182

View File

@@ -6,10 +6,5 @@ jobs:
test: test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout repository - name: Hello
run: | run: echo "Hello World"
git clone https://gitea.com/$GITEA_REPO_NAME . 2>/dev/null || git clone https://gitea.com/${{ github.repository }} .
- name: Install and test
run: |
pip install -e . pytest
pytest tests/ -v