feat: Alert on unexpected running status in workflows of type JOB_LIST #442
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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
Linux: | |
strategy: | |
matrix: | |
java-version: [ 21 ] | |
runs-on: [ ubuntu-latest, macos-latest, windows-latest ] | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'adopt' | |
cache: maven | |
- name: Build with Maven | |
shell: bash | |
run: | | |
if [[ "${{ runner.os }}" == "Windows" ]]; then | |
./mvnw.cmd clean verify -Dskip.frontend=true | |
else | |
./mvnw clean verify -Dskip.frontend=true | |
fi |