Skip to content

CodeQL (main)

CodeQL (main) #424

Workflow file for this run

name: CodeQL
run-name: ${{ github.workflow }} (${{ github.head_ref || github.ref_name }})
on:
push:
branches: ["main"]
pull_request:
# The branches below must be a subset of the branches above
branches: ["main"]
schedule:
- cron: "27 18 * * 2"
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["java"]
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
- name: Install java
uses: actions/setup-java@v3
with:
java-version: 8
distribution: zulu
cache: maven
- name: Prepare.
working-directory: sdk
run: make
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"