Skip to content

Commit 051025a

Browse files
committed
fix: remove PowerShell syntax from Linux CI debug script
- Use only Linux commands in GitHub Actions (runs on ubuntu-latest) - Fix syntax error that was causing CI failure
1 parent dde29cd commit 051025a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ jobs:
1616
- name: Debug coverage files
1717
run: |
1818
echo "Coverage directory contents:"
19-
ls -la coverage/ || dir coverage\
19+
ls -la coverage/
2020
echo "LCOV file size:"
21-
wc -c coverage/lcov.info || (Get-Item coverage\lcov.info).Length
21+
wc -c coverage/lcov.info
2222
echo "LCOV file first 10 lines:"
23-
head -10 coverage/lcov.info || Get-Content coverage\lcov.info | Select-Object -First 10
23+
head -10 coverage/lcov.info
2424
- name: Upload coverage to Codecov
2525
uses: codecov/codecov-action@v4
2626
with:

0 commit comments

Comments
 (0)