Add lint
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
new file mode 100644
index 0000000..7207fee
--- /dev/null
+++ b/.github/workflows/lint.yml
@@ -0,0 +1,10 @@
+name: Unit Test
+on: [pull_request, push]
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+      - name: Checkout the code
+        uses: actions/checkout@v2
+      - name: Run Lint
+        run: ./gradlew lintDebug
\ No newline at end of file