diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml
new file mode 100644
index 000000000..df1ffa53c
--- /dev/null
+++ b/.github/workflows/android-build.yml
@@ -0,0 +1,40 @@
+name: Build
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Set up JDK
+ uses: actions/setup-java@v2
+ with:
+ java-version: '11'
+ distribution: 'temurin'
+ cache: gradle
+
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+
+ - name: Build with Gradle
+ run: ./gradlew build
+
+ - name: Upload our APK
+ uses: actions/upload-artifact@v2.2.0
+ with:
+ name: APK
+ path: app/build/outputs/apk/release/app-release-unsigned.apk
+
+ - name: Upload lint report
+ uses: actions/upload-artifact@v2.2.0
+ with:
+ name: Lint report
+ path: app/build/reports/lint-results-debug.html
diff --git a/README.md b/README.md
index 2234b13aa..311ce4cef 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,9 @@
# OpenBoard
+
+[](https://github.com/openboard-team/openboard/actions/workflows/android-build.yml)
+
+
+