fix(deps): update dependency io.projectreactor:reactor-bom to v2024.0.0-snapshot #1020
Workflow file for this run
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: jpa | |
on: | |
push: | |
paths: | |
- "jpa/**" | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "jpa/**" | |
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: "corretto" | |
java-version: 21 | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build with Maven | |
run: mvn -B -q clean package --file jpa/pom.xml | |
- name: Unit Tests | |
run: mvn -B -q clean test --file jpa/pom.xml -Put | |
- name: Start up PostgreSQL in Docker | |
run: | | |
docker compose up -d postgres | |
sleep 5 | |
docker ps -a | |
- name: Integration Tests | |
run: mvn -B -q clean verify --file jpa/pom.xml -Pit-jetty |