Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/code-ql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: CodeQL Scanning
on:
push:
branches:
- 'master'
pull_request:
paths:
- 'src/main/kotlin/**'
- 'src/test/kotlin/**'
- 'src/main/resources/**'
- 'src/test/resources/**'
- '.github/workflows/code-ql.yml'

permissions:
contents: read
security-events: write

jobs:
codeql:
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: java-kotlin
build-mode: manual
- name: Build Project
run: |-
./gradlew --no-daemon --info -S clean testClasses \
-Pkotlin.incremental=false \
-Dorg.gradle.workers.max=1 \
-Pkotlin.compiler.execution.strategy=in-process
- name: Analyze Build
uses: github/codeql-action/analyze@v3
with:
category: '/language:java-kotlin'
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
org.gradle.configuration-cache=true

org.gradle.jvmargs=-Xmx4098m
# x-release-please-start-version
version=2.0.0
# x-release-please-end
Expand Down