Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ jobs:
include:
- language: actions
build-mode: none
# Manual: CodeQL analyzes what the build step below compiles, the plugin's main and test
# sources. The test projects in src/test/resources are Java files too, but javac never sees
# them, and with build-mode none their many copies of the same classes crowded the scan.
- language: java-kotlin
build-mode: none
build-mode: manual

steps:
- name: Checkout repository
Expand All @@ -42,6 +45,7 @@ jobs:
build-mode: ${{ matrix.build-mode }}

- name: Build main and test sources for CodeQL
if: ${{ matrix.build-mode == 'manual' }}
run: mvn --no-transfer-progress -B clean test-compile

- name: Perform CodeQL Analysis
Expand Down
Loading