Skip to content

Bump org.apache.felix:maven-bundle-plugin from 5.1.9 to 6.0.0 (#68) #56

Bump org.apache.felix:maven-bundle-plugin from 5.1.9 to 6.0.0 (#68)

Bump org.apache.felix:maven-bundle-plugin from 5.1.9 to 6.0.0 (#68) #56

Workflow file for this run

name: pitest
on:
workflow_dispatch:
push:
branches:
- main
paths-ignore:
- '**.md'
- '**.yml'
- '**.yaml'
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '23' ]
architecture: [ 'x64' ]
name: Mutation Testing with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Run Mutation Testing
run: mvn package -Ppitest org.pitest:pitest-maven:mutationCoverage
- name: Deploy
uses: peaceiris/actions-gh-pages@v4.0.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/pit-reports