Add GitHub workflow to run tests on pushes to main

This commit is contained in:
William Brawner 2021-02-20 21:02:20 -07:00 committed by GitHub
parent ed57785d0a
commit e75e0a07d1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

32
.github/workflows/android.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: Android CI
on:
push:
branches: [ main ]
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 assemblePlayDebug assemblePlayDebugAndroidTest assemblePlayDebugUnitTest
- name: Run unit tests
run: ./gradlew testPlayDebugUnitTest
- name: Add auth for flank
env:
GCLOUD_KEY: ${{ secrets.GCLOUD_KEY }}
GCLOUD_DIR: "$HOME/.config/gcloud/"
run: |
mkdir -p "$GCLOUD_DIR"
echo "$GCLOUD_KEY" | base64 --decode > "$GCLOUD_DIR/application_default_credentials.json"
- name: Run UI tests
run: ./gradlew runFlank