Add UDF sample via molecule #80
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: Build Workflow | |
on: [push] | |
# jobs: | |
# build: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v1 | |
# - name: Set up JDK 1.8 | |
# uses: actions/setup-java@v1 | |
# with: | |
# java-version: 1.8 | |
# - name: Set gradle permissions | |
# run: sudo chmod +x android-app/gradlew | |
# - name: Download dependencies | |
# run: | | |
# cd android-app | |
# ./gradlew app:dependencies | |
# - name: Build debug | |
# run: | | |
# cd android-app | |
# ./gradlew assembleDebug | |
# - name: Test debug | |
# run: | | |
# cd android-app | |
# ./gradlew testDebugUnitTest | |