Skip to content

Commit 336cf13

Browse files
authored
Merge branch 'master' into an/increase-coverage-1
2 parents 29da4bc + 2f87c86 commit 336cf13

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
matrix:
1919
language:
2020
- cpp
21+
- python
2122
steps:
2223
- uses: actions/checkout@v4
2324
with:
@@ -38,6 +39,7 @@ jobs:
3839
with:
3940
languages: ${{ matrix.language }}
4041
- name: CMake configure
42+
if: matrix.language == 'cpp'
4143
run: >
4244
cmake -S . -B build -G Ninja
4345
-D CMAKE_C_COMPILER_LAUNCHER=ccache -D CMAKE_CXX_COMPILER_LAUNCHER=ccache
@@ -46,6 +48,7 @@ jobs:
4648
CC: gcc-14
4749
CXX: g++-14
4850
- name: Build project
51+
if: matrix.language == 'cpp'
4952
run: |
5053
cmake --build build --parallel
5154
env:

0 commit comments

Comments
 (0)