diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml new file mode 100644 index 0000000..767c363 --- /dev/null +++ b/.github/workflows/ci_test.yml @@ -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