Skip to content

Code Scanning

Code Scanning #18

Workflow file for this run

name: "Code Scanning"
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 0 * * *'
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
security-events: write
actions: read
contents: read
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: java, kotlin
- name: Build
run: ./gradlew build
- name: Perform Analysis
uses: github/codeql-action/analyze@v2