update libs #65
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Android Pull Request & Develop CI | |
on: | |
pull_request: | |
branches: | |
- 'develop' | |
push: | |
branches: | |
- 'develop' | |
jobs: | |
test: | |
name: Run Unit Tests And 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: Unit tests | |
run: ./gradlew test --stacktrace | |
- name: Build with Gradle | |
run: ./gradlew assembleDebug | |
# apk: | |
# name: Generate APK | |
# runs-on: ubuntu-18.04 | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: set up JDK 1.8 | |
# uses: actions/setup-java@v1 | |
# with: | |
# java-version: 1.8 | |
# - name: Build debug APK | |
# run: bash ./gradlew assembleDebug --stacktrace | |
# - name: Upload APK | |
# uses: actions/upload-artifact@v1 | |
# with: | |
# name: app | |
# path: app/build/outputs/apk/debug/app-debug.apk |