Skip to content

CodeQL

CodeQL #451

# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"
on:
push:
branches: [main, develop]
paths:
- "Scenamatica/**"
pull_request:
# The branches below must be a subset of the branches above
branches: [develop]
paths:
- "Scenamatica/**"
schedule:
- cron: '31 8 * * 4'
workflow_dispatch:
jobs:
setup-nms:
name: Setup NMS
uses: "./.github/workflows/build-nms.yml"
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
build-and-analyze:
name: Build with Maven
runs-on: ubuntu-latest
needs: setup-nms
steps:
- uses: actions/checkout@v4
- name: Change directory to scenamatica
run: cd Scenamatica
- name: Set up JDK 8
uses: actions/setup-java@v4
id: maven-cache
with:
java-version: 8
distribution: zulu
cache: maven
- name: Set up Maven
uses: stCarolas/setup-maven@v5
with:
maven-version: 3.8.2
- name: Restore NMS cache
uses: actions/cache@v4
with:
path: nms-build/.m2
key: nms-maven
restore-keys: nms-maven
- name: Deploy NMS cache
if: steps.maven-cache.outputs.cache-hit != 'true'
run: |
mv -f nms-build/.m2/repository $HOME/.m2/ -v
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java
- name: Build with Maven
run: |
cd Scenamatica
chmod +x build.sh
./build.sh -D"jar.finalName=Scenamatica" -P debug
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3