Skip to content

Bump org.pitest:pitest-junit5-plugin from 1.1.2 to 1.2.1 #217

Bump org.pitest:pitest-junit5-plugin from 1.1.2 to 1.2.1

Bump org.pitest:pitest-junit5-plugin from 1.1.2 to 1.2.1 #217

Workflow file for this run

name: Java
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
- name: Configure Maven to use GitHub Packages
run: |
echo "<settings>
<servers>
<server>
<id>github</id>
<username>${{ github.actor }}</username>
<password>${{ secrets.GITHUB_TOKEN }}</password>
</server>
</servers>
</settings>" > $HOME/.m2/settings.xml
- name: Test
run: mvn -B verify