Skip to content

issue #105 add also a example with Spring Boot 3.1 using Flyway 9.0.0 #55

issue #105 add also a example with Spring Boot 3.1 using Flyway 9.0.0

issue #105 add also a example with Spring Boot 3.1 using Flyway 9.0.0 #55

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:
branches:
- master
- feature/**
paths: flyway-test-extensions/**
pull_request:
branches: [ master ]
paths: flyway-test-extensions/**
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: maven cache
uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '17'
- name: Build with Maven
# install is important because from a previous step a download is done to build the next step
run: mvn -B clean install --file flyway-test-extensions/pom.xml