Skip to content

feat: Display vehicle measurements #344

feat: Display vehicle measurements

feat: Display vehicle measurements #344

name: Mutation testing
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
mutation-testing:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/[email protected]
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Cache Maven packages
uses: actions/[email protected]
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Set up JDK
uses: actions/[email protected]
with:
java-version: 21
distribution: 'adopt'
cache: maven
- name: Run Pitest
run: |
mvn -B -ntp \
-Dpit.format=stryker-dashboard \
test-compile org.pitest:pitest-maven:mutationCoverage \
-pl \!:docs
env:
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}