Merge pull request #39 from dtruebin/dependabot/gradle/org.junit.jupi… #90
This file contains hidden or 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
# This workflow will build a Java project with Gradle and cache/restore any dependencies to improve the workflow execution time | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle | |
name: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
name: ${{ matrix.title }} | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- title: Java 17 # minimally supported version, set the same in gradle.properties | |
java: 17 | |
- title: Java 21 | |
java: 21 | |
# todo #41 | |
# - title: Java 25 | |
# java: 25 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
- name: Set up JDK | |
uses: actions/setup-java@v5 | |
with: | |
distribution: 'zulu' | |
java-version: ${{ matrix.java }} | |
cache: gradle | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Build with Gradle | |
run: ./gradlew -PjavaVersion=${{ matrix.java }} build | |
- name: Collect mutation testing report | |
run: mkdir mutation-testing-report && cp -r build/reports/pitest/* mutation-testing-report | |
- name: Archive mutation testing results | |
uses: actions/upload-artifact@v4 | |
with: | |
name: mutation-testing-report-${{ matrix.java }} | |
path: mutation-testing-report |