This repository has been archived by the owner on Nov 23, 2024. It is now read-only.
Bump org.postgresql:postgresql from 42.3.8 to 42.7.2 #140
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: build pull requests and branches | |
on: | |
push: | |
branches-ignore: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- id: checkout | |
uses: actions/checkout@v3 | |
- id: install-jdk | |
name: Set up JDK 11 | |
uses: actions/setup-java@v2 | |
with: | |
distribution: 'temurin' | |
java-version: 11 | |
- id: setup-maven | |
name: Cache Maven packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- id: build-flyway7 | |
name: Build with Maven and Flyway 7 | |
run: mvn clean verify -P flyway7,!flyway8 | |
- id: build | |
name: Build with Maven | |
run: mvn verify |