[Bugfix] Update codebase to latest atlas-web-core module #189
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: Build atlas-web-bulk WAR | |
on: | |
pull_request | |
jobs: | |
compile_war: | |
name: compile_war | |
strategy: | |
fail-fast: false # if one of the jobs in the matrix expansion fails, the rest of the jobs will be cancelled | |
matrix: | |
os: ["ubuntu-latest"] | |
jdk: [11] | |
runs-on: ${{ matrix.os }} | |
env: | |
JDK_VERSION: ${{ matrix.jdk }} | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.jdk }} | |
- name: Compile cli | |
run: ./gradlew --no-daemon :app:war |