Skip to content

Commit 87d6ba2

Browse files
committed
Add Github workflow for CI PRs
1 parent 25dc936 commit 87d6ba2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci-pr.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI PRs
2+
on: [pull_request]
3+
jobs:
4+
build:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- name: Checkout repo
8+
uses: actions/checkout@v2
9+
- name: Set up Java 17
10+
uses: actions/setup-java@v2
11+
with:
12+
java-version: 17
13+
distribution: 'temurin'
14+
cache: gradle
15+
- name: Build with Gradle
16+
run: ./gradlew build --no-daemon

0 commit comments

Comments
 (0)