From c9fd83e531b1f205e6d3132be55caee0c36ef41e Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Wed, 9 Apr 2025 17:47:32 +0200 Subject: [PATCH] ci: add debugging steps and permission settings to CI --- .gitea/workflows/pr.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index 125764b..8358f67 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -13,5 +13,20 @@ jobs: uses: actions/setup-go@v5 with: go-version: 1.24.2 - - name: Lint + + - name: Inspect the Action Directory (Debugging) + run: | + echo "Listing files in action directory:" + ls -l ./ + + - name: Set execute permissions (Attempt 1 - Relative Path) + run: chmod +x main.go.out + + - name: Set execute permissions (Attempt 2 - Absolute Path) + run: chmod +x $(pwd)/main.go.out + + - name: Set execute permissions (Attempt 3 - Explicit Path) + run: chmod +x /github/workspace/main.go.out #This is a path commonly used by actions, might work + + - name: Run Pull Request Lint Action uses: https://git.kjan.de/actions/pull-request-lint@main