Skip to content

specify source image registry #32

specify source image registry

specify source image registry #32

Workflow file for this run

name: build and verify
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "main" ]
jobs:
build-and-verify:
runs-on: ubuntu-latest
permissions:
checks: write
contents: read
packages: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build zip with Maven and run tests
run: |
./mvnw verify \
-B --fail-at-end --no-transfer-progress --file pom.xml
- name: Publish Unit Test Report
if: success() || failure()
uses: scacap/action-surefire-report@v1
with:
report_paths: '**/surefire-reports/TEST-*.xml, **/failsafe-reports/TEST-*.xml, **/karma-reports/**/test-*.xml'