Skip to content

Bump the maven-plugins group with 2 updates (#75) #67

Bump the maven-plugins group with 2 updates (#75)

Bump the maven-plugins group with 2 updates (#75) #67

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
maven:
name: "Execute build, run tests (Java ${{ matrix.java-version }})"
runs-on: ubuntu-22.04
strategy:
matrix:
java-version:
- 8
- 11
- 17
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: ${{ matrix.java-version }}
- run: "./mvnw --batch-mode clean install"