Skip to content

[#1264] change actuator health to DOWN when service graceful down #1844

[#1264] change actuator health to DOWN when service graceful down

[#1264] change actuator health to DOWN when service graceful down #1844

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 17
- name: Set up Maven
uses: stCarolas/setup-maven@v4.5
with:
maven-version: 3.8.4
- uses: actions/cache@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven
- name: Compilation and Installation
run: bash scripts/build.sh install
- name: publish coverage report
run: bash <(curl -s https://codecov.io/bash)