Fix support for loading onlyAnalyze classes/packages from specified file to handle maven modules correctly by using resourceHelper. #1344
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: Java Integration Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Integration Tests | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21 | |
distribution: zulu | |
- name: Build Setup | |
run: ./mvnw -B -V clean install -Dlicense.skip=true --no-transfer-progress | |
- name: Integration Test with Maven | |
run: ./mvnw -B -V -DtestSrc=remote -Prun-its clean install -Dinvoker.parallelThreads=4 -Dlicense.skip=true --no-transfer-progress |