From 464b4ef182300fb8f217fd4382837e43fc0b8a85 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 05:22:28 +0000 Subject: [PATCH] Minimal hello world workflow to test Gitea Actions --- .gitea/workflows/ci.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c624211..aeec23e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -6,10 +6,5 @@ jobs: test: runs-on: ubuntu-latest steps: - - name: Checkout repository - run: | - 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 + - name: Hello + run: echo "Hello World"