Skip to content

Commit cd1e279

Browse files
author
GauthamAsir
committed
Merge remote-tracking branch 'origin/master'
2 parents 8830863 + 03cd9f5 commit cd1e279

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/main.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Android Master
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
jobs:
8+
testing:
9+
name: Lint Check and Testing
10+
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Clone Repo
15+
uses: actions/checkout@v1
16+
17+
- name: Set up JDK 1.8
18+
uses: actions/setup-java@v1
19+
with:
20+
java-version: 1.8
21+
22+
# Step 2: Decode Google services configuration file
23+
- name: Decode google-services.json
24+
env:
25+
FIREBASE_CONFIG: ${{ secrets.FIREBASE_CONFIG }}
26+
run: echo $FIREBASE_CONFIG > app/google-services.json
27+
28+
# Step 4: Assemble debug apk to send to firebase test lab
29+
- name: Assemble Debug APK
30+
run: ./gradlew assembleStagingDebug

0 commit comments

Comments
 (0)