We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc7f01e commit 2102355Copy full SHA for 2102355
1 file changed
.github/workflows/codeql.yml
@@ -88,11 +88,11 @@ jobs:
88
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
89
- if: matrix.build-mode == 'manual'
90
name: "Build C version"
91
- shell: pwsh
+ shell: bash
92
run: |
93
- gcc factor_count.c -o factor_count
94
- if ($?) { .\factor_count }
95
- exit 1
+ if gcc ./c/factor_count.c -o factor_count; then
+ ./c/factor_count
+ fi
96
97
- name: Perform CodeQL Analysis
98
uses: github/codeql-action/analyze@v3
0 commit comments