We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8830863 + 03cd9f5 commit cd1e279Copy full SHA for cd1e279
.github/workflows/main.yml
@@ -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