Add CI install test
Change-Id: I11684e668f678233da876071648e49338293a79b
diff --git a/.github/workflows/ci_test.yml b/.github/workflows/ci_test.yml
new file mode 100644
index 0000000..64aa65e
--- /dev/null
+++ b/.github/workflows/ci_test.yml
@@ -0,0 +1,17 @@
+name: CI Test
+
+on: [push, pull_request]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout Koral
+ uses: actions/checkout@v2
+ - name: Set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+
+ - name: Build and install Koral
+ run: mvn --file pom.xml install