Merge pull request #227 from UCSF-IGHS/hk-add-hct-and-hp-packages #352
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 and Validate Configuration | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches-ignore: [main, 2.x, 2.3.x, 2.6.x] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: [ '8' ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java }} | |
cache: 'maven' | |
- name: Build and Test | |
run: mvn --batch-mode --update-snapshots --activate-profiles validator clean package |