Skip to content

Commit 9afa098

Browse files
committed
add test workflow
1 parent d9a5768 commit 9afa098

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Run tests
2+
on: [push]
3+
jobs:
4+
test:
5+
runs-on: ubuntu-latest
6+
steps:
7+
- uses: actions/checkout@v4
8+
9+
- name: Set up JDK
10+
uses: actions/setup-java@v4
11+
with:
12+
distribution: zulu
13+
java-version: 17
14+
15+
- name: Run tests
16+
run: ./gradlew clean test

0 commit comments

Comments
 (0)