Skip to content

Commit d39e9c6

Browse files
committed
Run codeql against cpp also
1 parent 3ba1911 commit d39e9c6

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/codeql-daily.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ on:
88
jobs:
99
analyze:
1010
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: false
13+
matrix:
14+
language: [ java, cpp ]
1115

1216
steps:
1317
- uses: actions/checkout@v4
@@ -21,9 +25,10 @@ jobs:
2125
- name: Initialize CodeQL
2226
uses: github/codeql-action/init@v3
2327
with:
24-
languages: java
28+
languages: ${{ matrix.language }}
2529

2630
- uses: gradle/gradle-build-action@v3
31+
if: ${{ matrix.language == 'java' }}
2732
with:
2833
# skipping build cache is needed so that all modules will be analyzed
2934
arguments: assemble --no-build-cache

0 commit comments

Comments
 (0)