Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
GauthamAsir committed Mar 29, 2021
2 parents 8830863 + 03cd9f5 commit cd1e279
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Android Master

on:
push:
branches:
- 'master'
jobs:
testing:
name: Lint Check and Testing

runs-on: ubuntu-latest

steps:
- name: Clone Repo
uses: actions/checkout@v1

- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8

# Step 2: Decode Google services configuration file
- name: Decode google-services.json
env:
FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }}
run: echo $FIREBASE_CONFIG > app/google-services.json

# Step 4: Assemble debug apk to send to firebase test lab
- name: Assemble Debug APK
run: ./gradlew assembleStagingDebug

0 comments on commit cd1e279

Please sign in to comment.