cadc-registry: add DAP-2.1 standardID for prototype #172
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 | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: build and test cadc-registry | |
run: cd cadc-registry && ../gradlew --info clean build javadoc checkstyleMain install | |
- name: build and test cadc-vosi | |
run: cd cadc-vosi && ../gradlew --info clean build javadoc checkstyleMain install | |
- name: build and test cadc-test-vosi | |
run: cd cadc-test-vosi && ../gradlew --info clean build javadoc checkstyleMain install | |
- name: build reg | |
run: cd reg && ../gradlew --info clean build compileIntTest javadoc checkstyleMain | |