forked from opencadc/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (22 loc) · 908 Bytes
/
gradle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
name: Java CI with Gradle
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 1.8
uses: actions/setup-java@v3
with:
java-version: 8
distribution: temurin
- name: build and test cadc-app-kit
run: cd cadc-app-kit && ../gradlew --info clean build javadoc checkstyleMain install
- name: build and test cadc-download-manager
run: cd cadc-download-manager && ../gradlew --info clean build javadoc checkstyleMain install
- name: build and test cadc-upload-manager
run: cd cadc-upload-manager && ../gradlew --info clean build javadoc checkstyleMain install
- name: build and test cadc-download-manager-server
run: cd cadc-download-manager-server && ../gradlew --info clean build javadoc checkstyleMain install