Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

CodeQL Advanced Configuration #1

CodeQL Advanced Configuration

CodeQL Advanced Configuration #1

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