Skip to content

Commit be95899

Browse files
committed
ci: add git hub actions for the PR validation
1 parent 782b52f commit be95899

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/verify.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
on: pull_request
2+
jobs:
3+
verify:
4+
runs-on: ubuntu-latest
5+
steps:
6+
- name: Checkout
7+
uses: actions/checkout@v2
8+
- name: Setup Java
9+
uses: actions/setup-java@v1
10+
with:
11+
java-version: 17
12+
- name: Run Tests
13+
run: ./gradlew test

0 commit comments

Comments
 (0)