Create ci_test.yml

This commit is contained in:
okx-code
2022-11-07 16:15:19 +00:00
committed by GitHub
parent 810c5ac268
commit 2a826dba1f
+18
View File
@@ -0,0 +1,18 @@
name: CI Test
on:
push:
paths:
- 'src/**'
jobs:
ci_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup JDK
uses: actions/setup-java@v2
with:
java-version: 11
distribution: 'adopt'
- name: Gradle Test
run: ./gradlew test --no-daemon