Skip to content

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

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

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

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: ['17', '20']
steps:
- uses: actions/checkout@v2
- name: Setup JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Maven Install Dependencies
run: mvn install -B -V -DskipTests -Dair.check.skip-all
- name: Maven Test
run: mvn install -B