-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (39 loc) · 1.26 KB
/
gradle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# 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:
matrix:
include:
- title: Java 11
java: 11
- title: Java 17
java: 17
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
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 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