chore(deps): update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.5.0 #92
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: pg-notifier-listener | |
on: | |
push: | |
paths: | |
- "pg-notifier-listener/**" | |
branches: | |
- master | |
pull_request: | |
paths: | |
- "pg-notifier-listener/**" | |
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 pg-notifier-listener/pom.xml |