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.
2 parents 29da4bc + 2f87c86 commit 336cf13Copy full SHA for 336cf13
.github/workflows/codeql.yml
@@ -18,6 +18,7 @@ jobs:
18
matrix:
19
language:
20
- cpp
21
+ - python
22
steps:
23
- uses: actions/checkout@v4
24
with:
@@ -38,6 +39,7 @@ jobs:
38
39
40
languages: ${{ matrix.language }}
41
- name: CMake configure
42
+ if: matrix.language == 'cpp'
43
run: >
44
cmake -S . -B build -G Ninja
45
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache
@@ -46,6 +48,7 @@ jobs:
46
48
CC: gcc-14
47
49
CXX: g++-14
50
- name: Build project
51
52
run: |
53
cmake --build build --parallel
54
env:
0 commit comments