Skip to content

[maven-release-plugin] prepare release 3.0.2 #254

[maven-release-plugin] prepare release 3.0.2

[maven-release-plugin] prepare release 3.0.2 #254

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
jobs:
build:
if: github.repository == 'nkonev/r2dbc-migrate'
runs-on: ubuntu-22.04
strategy:
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
java: [ 17.0.4 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build with Maven
run: |
pwd
ls -lah
./mvnw clean package -DenableOomTests=true
rm -rf ~/.m2/repository/name/nkonev/r2dbc-migrate