Skip to content

build: bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.5.4 #134

build: bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.5.4

build: bump org.apache.maven.plugins:maven-surefire-plugin from 3.1.2 to 3.5.4 #134

Workflow file for this run

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