From b0859a4551a399d4a8dc5205216f2a64792dd2e8 Mon Sep 17 00:00:00 2001 From: Huang Yunkun Date: Wed, 21 Oct 2020 17:13:42 +0800 Subject: [PATCH] add ci --- .github/workflows/ci.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e69de29..6369d12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -0,0 +1,27 @@ +name: CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew clean build + - uses: actions/upload-artifact@v2 + with: + name: debug + path: app/build/outputs/apk/debug/*.apk \ No newline at end of file