Skip to content

chore: Bump org.graalvm.buildtools:native-maven-plugin from 0.10.1 to 0.10.2 #570

chore: Bump org.graalvm.buildtools:native-maven-plugin from 0.10.1 to 0.10.2

chore: Bump org.graalvm.buildtools:native-maven-plugin from 0.10.1 to 0.10.2 #570

name: Mutation testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
mutation-testing:
if: contains(github.event.head_commit.message, 'Releasing version') != true && contains(github.event.head_commit.message, 'Prepare next version') != true
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4.1.5
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK
uses: actions/setup-java@v4.2.1
with:
java-version: 17
distribution: 'adopt'
cache: maven
- name: Run Pitest
run: mvn -B test-compile org.pitest:pitest-maven:mutationCoverage
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}