Skip to content

Bump org.postgresql:postgresql from 42.7.5 to 42.7.6 (#709) #150

Bump org.postgresql:postgresql from 42.7.5 to 42.7.6 (#709)

Bump org.postgresql:postgresql from 42.7.5 to 42.7.6 (#709) #150

Workflow file for this run

# https://docs.github.com/en/actions/use-cases-and-examples/building-and-testing/building-and-testing-java-with-maven
name: Maven verify
on:
push:
branches:
- develop
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
runner:
- ubuntu-24.04
- windows-2022
- macos-14
java-version:
- 21
uses: FAIRDataTeam/github-workflows/.github/workflows/maven-verify.yml@v2
with:
runner: ${{ matrix.runner }}
java-version: ${{ matrix.java-version }}
# quotes around spring.profiles.active are required for windows
mvn-options: '-D"spring.profiles.active"=testing'
# db settings must match testing profile
db-type: postgresql
db-name: fdp_test
db-username: fdp
db-password: fdp
db-port: 54321