ci: add debugging steps and permission settings to CI
This commit is contained in:
parent
5fd5b36be7
commit
c9fd83e531
1 changed files with 16 additions and 1 deletions
|
@ -13,5 +13,20 @@ jobs:
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: 1.24.2
|
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
|
uses: https://git.kjan.de/actions/pull-request-lint@main
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue