From e91d0e89d354c0980556848b4f92a310c17870b0 Mon Sep 17 00:00:00 2001 From: Denton Gentry Date: Tue, 23 Aug 2022 20:19:40 -0700 Subject: [PATCH] Add continuous integration builder Building tailscale-debug.apk also runs unit tests. Signed-off-by: Denton Gentry --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6037083 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: Build Debug APK + +on: + push: + branches: + - main + pull_request: + branches: + - '*' + +jobs: + build: + runs-on: ubuntu-latest + + if: "!contains(github.event.head_commit.message, '[ci skip]')" + + steps: + + - name: Check out code + uses: actions/checkout@v3 + + - name: Build APK + run: make tailscale-debug.apk