chore(deps): update dependency maven-wrapper to v3.3.1 #717
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: jdbc | |
on: | |
push: | |
paths: | |
- "jdbc/**" | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "jdbc/**" | |
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 jdbc/pom.xml | |
- name: Start up PostgreSQL in Docker | |
run: | | |
docker compose up -d postgres | |
sleep 5 | |
docker ps -a | |
- name: Unit Tests | |
run: mvn -B -q clean test --file jdbc/pom.xml -Put | |
- name: Integration Tests | |
run: mvn -B -q clean verify --file jdbc/pom.xml -Pit | |