Skip to content

CodeQL

CodeQL #40

Workflow file for this run

---
name: CodeQL
on:
workflow_dispatch:
schedule:
- cron: '34 8 * * 4'
jobs:
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@v4
- name: Set up JDK 19
uses: actions/[email protected]
with:
distribution: 'temurin'
java-version: '19'
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Give permission to executable
run: chmod +x gradlew
- name: Build with gradle
uses: gradle/[email protected]
with:
gradle-version: current
arguments: clean assembleDebug --no-build-cache
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3