chore(deps): update dependency org.apache.maven.plugins:maven-surefir… #178
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: r2dbc-migrate | |
on: | |
push: | |
paths: | |
- "r2dbc-migrate/**" | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "r2dbc-migrate/**" | |
types: | |
- opened | |
- synchronize | |
- reopened | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "zulu" | |
java-version: "21" | |
cache: "maven" | |
- name: Start up PostgreSQL in Docker | |
run: | | |
docker compose up -d postgres | |
sleep 10 | |
docker ps -a | |
- name: Build with Maven | |
run: | | |
mvn clean install --file r2dbc-migrate/pom.xml | |
mvn clean verify -Pit --file r2dbc-migrate/pom.xml |