Create ci_test.yml
This commit is contained in:
@@ -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
|
||||||
Reference in New Issue
Block a user