Skip to content

Commit 46d22f6

Browse files
committed
Show working dir
1 parent 36b468d commit 46d22f6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/golangci_lint.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ jobs:
5858
if: ${{ always() }}
5959
run: |
6060
echo "Debugging lint results for module ${{ matrix.module }}"
61-
find . -name "golangci-lint-report.xml"
61+
echo "Current working directory: $(pwd)"
62+
echo "Looking for golangci-lint-report.xml files:"
63+
find . -name "golangci-lint-report.xml" -type f -exec ls -lh {} \; -exec echo "Contents of {}:" \; -exec cat {} \;
6264
6365
golangci-lint:
6466
# Required sink job that waits for all lint jobs to complete

0 commit comments

Comments
 (0)