Skip to content

CodeQL

CodeQL #19252

name: "CodeQL"
on:
push:
branches: [ "develop" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "develop" ]
schedule:
- cron: '20 * * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
##- name: Build with Maven
## run: mvn -B package --file pom.xml
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v2
with:
distribution: 'temurin'
java-version: '17'
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
distribution: 'temurin'
java-version: '17'