Skip to content

Commit 531d9d6

Browse files
try1 win
1 parent 3ba62c7 commit 531d9d6

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/go.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,21 @@ jobs:
7676
- name: Make binary executable
7777
if: matrix.os != 'windows-latest'
7878
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" }
7985
- name: Install dependencies from .codacy/codacy.yaml
86+
if: matrix.os != 'windows-latest'
8087
run: |
8188
./cli-v2 install
89+
- name: Install dependencies from .codacy/codacy.yaml (Windows)
90+
if: matrix.os == 'windows-latest'
91+
shell: pwsh
92+
run: |
93+
.\cli-v2.exe install
8294
8395
release:
8496
needs: [test, ittest]

0 commit comments

Comments
 (0)