Skip to content

[maven-release-plugin] prepare for next development iteration #32

[maven-release-plugin] prepare for next development iteration

[maven-release-plugin] prepare for next development iteration #32

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: ["1.8", "11", "17", "21"]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package