Skip to content
This repository was archived by the owner on Aug 9, 2025. It is now read-only.

build(deps): bump org.pitest:pitest-maven from 1.19.3 to 1.19.5 #419

build(deps): bump org.pitest:pitest-maven from 1.19.3 to 1.19.5

build(deps): bump org.pitest:pitest-maven from 1.19.3 to 1.19.5 #419

Workflow file for this run

name: CI
on:
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 21
- name: Cache Maven dependencies
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: mvn clean install -ntp
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}