Execute integration tests with (LTS) Java versions #93
Workflow file for this run
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: Gradle Build Check | |
on: | |
pull_request: | |
push: | |
workflow_dispatch: {} | |
jobs: | |
gradle: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
# Always build with JDK 8 initially | |
java-version: 8 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
with: | |
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }} | |
- name: Execute Gradle build | |
run: ./gradlew clean check integrationTest --scan --stacktrace | |
- name: 'Publish Test Results' | |
uses: EnricoMi/publish-unit-test-result-action/composite@v2 | |
if: always() | |
with: | |
files: | | |
**/build/test-results/**/*.xml | |
- name: JaCoCo Test Coverage Report | |
uses: PavanMudigonda/jacoco-reporter@v4.9 | |
with: | |
coverage_results_path: "htmlSanityCheck-gradle-plugin/build/reports/jacoco/testCodeCoverageReport/testCodeCoverageReport.xml" | |
coverage_report_name: Coverage | |
coverage_report_title: JaCoCo | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
test-java-versions: | |
strategy: | |
matrix: | |
java-test-version: [ 11, 17, 21, 22 ] | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
# Always build with JDK 8 initially | |
java-version: ${{ matrix.java-test-version }} | |
- name: Execute integration test | |
run: | | |
find build/maven-repo -type f -ls | |
./gradlew --version | |
./gradlew integrationTestOnly |