We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb94342 commit 483dbd8Copy full SHA for 483dbd8
.github/workflows/codeql-analysis.yml
@@ -0,0 +1,25 @@
1
+name: CodeQL Manual Build
2
+
3
+strategy:
4
+ matrix:
5
+ include:
6
+ - language: java-kotlin
7
+ build-mode: manual
8
+steps:
9
+ - name: Checkout repository
10
+ uses: actions/checkout@v4
11
12
+ # Initializes CodeQL tools and creates a codebase for analysis.
13
+ - name: Initialize CodeQL
14
+ uses: github/codeql-action/init@v3
15
+ with:
16
+ languages: ${{ matrix.language }}
17
+ - if: ${{ matrix.build-mode == 'manual' }}
18
+ name: Build code
19
+ run: |
20
+ echo 'If you are using a "manual" build mode for one or more of the' \
21
+ 'languages you are analyzing, replace this with the commands to build' \
22
+ 'your code, for example:'
23
+ echo ' make bootstrap'
24
+ echo ' make release'
25
+ exit 1
0 commit comments