Skip to content
Open
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
14 changes: 14 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,27 @@ jobs:
java-version: '11'
distribution: 'temurin'

# Initialize CodeQL with custom configuration
# - Excludes specific queries that may generate noise
# - Ignores test paths to focus on production code
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
build-mode: none
dependency-caching: true
config: |
query-filters:
- exclude:
id: java/missing-call-to-super-finalize
- exclude:
id: java/unread-local-variable
paths-ignore:
- '**/test/**'
- '**/tests/**'
- '**/*Test.java'
- '**/*Tests.java'

# Autobuild attempts to build any compiled languages (Java, C#, Go, etc.)
# If this step fails, remove it and run the build manually instead
Expand Down
Loading