Skip to content

Commit 866d37a

Browse files
committed
add(workflows): test PR
1 parent 657c0cc commit 866d37a

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/test-pr.yaml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Test PR
2+
on: [push]
3+
4+
jobs:
5+
test:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: Checkout latest code
9+
uses: actions/checkout@v3
10+
11+
- name: Set up JDK 17
12+
uses: actions/setup-java@v3
13+
with:
14+
java-version: 17
15+
distribution: 'zulu'
16+
cache: 'gradle'
17+
18+
- name: Build with Gradle
19+
run: ./gradlew build

0 commit comments

Comments
 (0)