From f19c82a2adffe724eb00951610b4919ce0d63edf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Dulai?= Date: Tue, 2 Jun 2026 22:10:03 +0200 Subject: [PATCH] Fix failing ci/cd setup --- .gitea/workflows/test.yml | 23 +++++++---------------- 1 file changed, 7 insertions(+), 16 deletions(-) diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml index 6a7928c..85435a7 100644 --- a/.gitea/workflows/test.yml +++ b/.gitea/workflows/test.yml @@ -1,4 +1,4 @@ -name: Go Tests +name: Debug on: push: @@ -10,27 +10,18 @@ jobs: runs-on: ubuntu-latest steps: - - name: Show environment + - name: Show workspace run: | echo "=== Workspace ===" pwd ls -la - echo + - name: Dump environment variables + run: | echo "=== Environment Variables ===" env | sort - - name: Clone repository + - name: Dump relevant variables only run: | - git clone "$CI_REPOSITORY_URL" repo - ls -la repo - - - name: Download dependencies - run: | - cd repo - go mod download - - - name: Run tests - run: | - cd repo - go test ./... -v \ No newline at end of file + echo "=== Repository-related Variables ===" + env | grep -Ei 'gitea|github|repo|repository|workspace|ci' \ No newline at end of file