Bump org.postgresql:postgresql from 42.7.4 to 42.7.5 #792
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: build | |
on: | |
push: | |
branches: [ dev ] | |
pull_request: | |
branches: [ dev ] | |
jobs: | |
build-main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
cache: 'maven' | |
- name: Setup Testcontainers Cloud Client | |
uses: atomicjar/testcontainers-cloud-setup-action@v1 | |
with: | |
token: ${{ secrets.TC_CLOUD_TOKEN }} | |
- name: Build and test Celesta | |
run: mvn verify -P dev -pl !celesta-documentation | |
- name: Publish test report | |
uses: dorny/test-reporter@v1 | |
if: (success() || failure()) && github.actor != 'dependabot[bot]' | |
with: | |
name: Test report | |
path: '**/surefire-reports/**/*.xml' | |
reporter: java-junit | |
- name: Publish test coverage | |
uses: actions/upload-artifact@v3 | |
if: success() || failure() | |
with: | |
name: test-coverage | |
path: coverage-report/target/site/jacoco-aggregate |