Skip to content

Commit 2102355

Browse files
Crossing my fingers
1 parent cc7f01e commit 2102355

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,11 +88,11 @@ jobs:
8888
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
8989
- if: matrix.build-mode == 'manual'
9090
name: "Build C version"
91-
shell: pwsh
91+
shell: bash
9292
run: |
93-
gcc factor_count.c -o factor_count
94-
if ($?) { .\factor_count }
95-
exit 1
93+
if gcc ./c/factor_count.c -o factor_count; then
94+
./c/factor_count
95+
fi
9696
9797
- name: Perform CodeQL Analysis
9898
uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)