We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36b468d commit 46d22f6Copy full SHA for 46d22f6
1 file changed
.github/workflows/golangci_lint.yml
@@ -58,7 +58,9 @@ jobs:
58
if: ${{ always() }}
59
run: |
60
echo "Debugging lint results for module ${{ matrix.module }}"
61
- find . -name "golangci-lint-report.xml"
+ 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 {} \;
64
65
golangci-lint:
66
# Required sink job that waits for all lint jobs to complete
0 commit comments