CodeQL #59
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
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: Setup Android SDK | |
uses: android-actions/setup-android@v3 | |
- name: Give permission to executable | |
run: chmod +x gradlew | |
- name: Build with gradle | |
uses: gradle/[email protected] | |
with: | |
gradle-version: current | |
arguments: clean assembleDevDebug --no-build-cache | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 |