Skip to content

Commit 483dbd8

Browse files
committed
CodeQL manual build
1 parent cb94342 commit 483dbd8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)