-
Notifications
You must be signed in to change notification settings - Fork 4
38 lines (36 loc) · 942 Bytes
/
check.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
31
32
33
34
35
36
37
38
name: Java CI with Gradle
on:
push:
paths:
- 'src/**'
- '*.gradle'
- 'gradle.properties'
- 'gradlew*'
- 'gradle/**'
- '.github/**'
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/cache@v2
with:
path: |
~/.gradle/loom-cache
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
gradle-
- name: Checkout code.
uses: actions/checkout@v2
- name: Setup JDK 16
uses: actions/setup-java@v1
with:
java-version: 16
- name: Ensure gradlew is executable
run: chmod +x gradlew
- name: Validate the gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Run build with gradle
run: ./gradlew build --stacktrace