From eb595127ed661d8e8a7621daeb50cb030248c65a Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 05:30:42 +0000 Subject: [PATCH] Debug workflow to see environment --- .gitea/workflows/ci.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 30f562d..ccd296e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -3,13 +3,12 @@ name: CI on: [push, pull_request] jobs: - test: + debug: runs-on: ubuntu-latest steps: - - name: Install + - name: Debug run: | - pip3 install --upgrade pip setuptools wheel 2>/dev/null || pip install --upgrade pip setuptools wheel - pip3 install -e . pytest 2>/dev/null || pip install -e . pytest - - name: Test - run: | - pytest tests/ -v 2>/dev/null || python3 -m pytest tests/ -v + echo "PWD: $(pwd)" + echo "ls: $(ls -la)" + echo "GITEA_REPO_NAME: $GITEA_REPO_NAME" + echo "github.repository: $github.repository"