We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ba62c7 commit 531d9d6Copy full SHA for 531d9d6
.github/workflows/go.yml
@@ -76,9 +76,21 @@ jobs:
76
- name: Make binary executable
77
if: matrix.os != 'windows-latest'
78
run: chmod +x cli-v2
79
+ - name: Debug Windows binary
80
+ if: matrix.os == 'windows-latest'
81
+ run: |
82
+ dir
83
+ echo "Binary exists check:"
84
+ if (Test-Path cli-v2.exe) { Write-Host "Binary exists" } else { Write-Host "Binary not found" }
85
- name: Install dependencies from .codacy/codacy.yaml
86
+ if: matrix.os != 'windows-latest'
87
run: |
88
./cli-v2 install
89
+ - name: Install dependencies from .codacy/codacy.yaml (Windows)
90
91
+ shell: pwsh
92
93
+ .\cli-v2.exe install
94
95
release:
96
needs: [test, ittest]
0 commit comments