Added the statusCode field to the HealthCheckResult and adjusted the … #5
This file contains hidden or 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: Maven build | |
env: | |
MAVEN_ARGS: -V -ntp -e | |
on: | |
push: | |
branches: | |
- "main" | |
- "develop" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Java and Maven | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
cache: 'maven' | |
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }} | |
gpg-passphrase: GPG_PASSPHRASE | |
- name: Build with Maven | |
run: mvn ${MAVEN_ARGS} verify | |
env: | |
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} |