Skip to content

Bump org.codehaus.mojo:build-helper-maven-plugin from 3.6.0 to 3.6.1 … #887

Bump org.codehaus.mojo:build-helper-maven-plugin from 3.6.0 to 3.6.1 …

Bump org.codehaus.mojo:build-helper-maven-plugin from 3.6.0 to 3.6.1 … #887

Workflow file for this run

name: CI build
on:
push:
paths-ignore:
- 'documentation/**'
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '21'
- name: Build project with Maven
run: mvn -B -ntp -Dstyle.color=always install
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.2.3