We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ca939c commit a62dc01Copy full SHA for a62dc01
1 file changed
.github/workflows/golangci_lint.yml
@@ -53,6 +53,16 @@ jobs:
53
golangci-lint-version: v${{ steps.get-version.outputs.version }}
54
go-directory: ${{ matrix.module }}
55
56
+ - name: Debug
57
+ if: ${{ always() }}
58
+ run: |
59
+ echo "Debugging lint results for module ${{ matrix.module }}"
60
+ find . -name "golangci-lint-report.xml"
61
+ echo "GITHUB_WORKSPACE: $GITHUB_WORKSPACE"
62
+ echo "Current working directory: $(pwd)"
63
+ echo "Looking for golangci-lint-report.xml files from workspace root:"
64
+ find "$GITHUB_WORKSPACE" -name "golangci-lint-report.xml"
65
+
66
golangci-lint:
67
# Required sink job that waits for all lint jobs to complete
68
if: ${{ github.event_name != 'merge_group' }}
0 commit comments