diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-10-02 10:44:16 +0530 |
---|---|---|
committer | Harsh Shandilya <msfjarvis@gmail.com> | 2019-10-02 10:44:16 +0530 |
commit | 27592dde1087804442ea37e17c2e13aad5c72b01 (patch) | |
tree | cf5a09008516406feb00890ef17f00c94b3b6f6b /.github/workflows/push.yml | |
parent | 073346c157ec34b750d175c8543f346e6eae94de (diff) |
Migrate to GitHub actions for CI
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to '.github/workflows/push.yml')
-rw-r--r-- | .github/workflows/push.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 00000000..8fed257a --- /dev/null +++ b/.github/workflows/push.yml @@ -0,0 +1,11 @@ +on: push +name: CI builds +jobs: + setup-android: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: setup-android + uses: msfjarvis/setup-android@0.2 + with: + gradleTasks: build test lintDebug -Dpre-dex=false |