Addhealth check conf in docker compose #2
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: ci | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- 'docs/**' | |
defaults: | |
run: | |
shell: bash --noprofile --norc -euo pipefail {0} | |
env: | |
# Use Maven wrapper from repo with Maven version and other configs | |
MAVEN: ./mvnw -B | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 20 | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Install required Java distribution | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '21' | |
distribution: 'temurin' | |
- name: Build with Maven | |
run: $MAVEN clean verify | |
- uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: amd64,arm64,ppc64le | |
- name: Build and Test Docker Image | |
run: docker/build.sh |