Skip to content

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.5 to 3.5.6 #287

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.5 to 3.5.6

Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.5 to 3.5.6 #287

Workflow file for this run

name: build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: 🛠 Set up JDK 11
uses: actions/setup-java@v5
with:
java-version: '11'
distribution: 'temurin'
cache: maven
- name: 📦 Build with Maven
run: mvn clean -B package jacoco:report --no-transfer-progress --file pom.xml
- name: 🚀 Coveralls Coverage Report Submission
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}