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.
1 parent 7d2c088 commit dc7eccaCopy full SHA for dc7ecca
.github/workflows/codeql-daily.yml
@@ -4,6 +4,9 @@ on:
4
schedule:
5
- cron: '30 1 * * *'
6
workflow_dispatch:
7
+ push:
8
+ branches:
9
+ - '**'
10
11
jobs:
12
analyze:
@@ -33,6 +36,11 @@ jobs:
33
36
# skipping build cache is needed so that all modules will be analyzed
34
37
run: ./gradlew assemble --no-build-cache
35
38
39
+ - name: Build native C++ code
40
+ run: |
41
+ cd etw/native
42
+ ./gradlew build
43
+
44
- name: Perform CodeQL analysis
45
uses: github/codeql-action/analyze@v3
46
0 commit comments