summaryrefslogtreecommitdiff
path: root/.github/workflows/pr-build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pr-build.yml')
-rw-r--r--.github/workflows/pr-build.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml
new file mode 100644
index 00000000..67a9c9be
--- /dev/null
+++ b/.github/workflows/pr-build.yml
@@ -0,0 +1,32 @@
+name: pr-build
+
+on:
+ pull_request:
+ branches: [ main ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Set up JDK 15
+ uses: actions/setup-java@v1.4.3
+ with:
+ java-version: 15
+
+ - name: Gradle build cache
+ uses: actions/cache@v2
+ with:
+ path: ~/.gradle/caches
+ key: ${{ runner.os }}-gradle-build-${{ hashFiles('**/*.gradle*') }}
+ restore-keys: ${{ runner.os }}-gradle-build-
+
+ - name: Gradle wrapper cache
+ uses: actions/cache@v2
+ with:
+ path: ~/.gradle/wrapper
+ key: ${{ runner.os }}-gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }}
+
+ - name: Build with Gradle
+ run: ./gradlew build
bgstack15