This repository has been archived by the owner on Nov 22, 2024. It is now read-only.
CodeQL Advanced Configuration #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CodeQL Manual Build | |
strategy: | |
matrix: | |
include: | |
- language: java-kotlin | |
build-mode: manual | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4.2.1 | |
# Initializes CodeQL tools and creates a codebase for analysis. | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3.27.3 | |
with: | |
languages: ${{ matrix.language }} | |
- if: ${{ matrix.build-mode == 'manual' }} | |
name: Build code | |
run: | | |
echo 'If you are using a "manual" build mode for one or more of the' \ | |
'languages you are analyzing, replace this with the commands to build' \ | |
'your code, for example:' | |
echo ' make bootstrap' | |
echo ' make release' | |
exit 1 |