fix(uat): add callback for disconnect #420
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: Java CI UAT | |
on: | |
push: | |
branches: | |
- main | |
- uat-dev | |
pull_request: | |
branches: '**' | |
jobs: | |
build: | |
timeout-minutes: 60 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- uses: wagoid/commitlint-github-action@v4 | |
if: matrix.os == 'ubuntu-latest' | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build with Maven (not Windows) | |
working-directory: uat | |
run: mvn -ntp -U clean verify | |
if: matrix.os != 'windows-latest' | |
- name: Build with Maven (Windows) | |
working-directory: uat | |
env: | |
AWS_REGION: us-west-2 | |
run: mvn -ntp -U clean verify | |
shell: cmd | |
if: matrix.os == 'windows-latest' |