Skip to content

Setup Firebase Dependencies 🔥 #18

Setup Firebase Dependencies 🔥

Setup Firebase Dependencies 🔥 #18

Workflow file for this run

name: Android CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Load Google Service file
env:
SERVICE_CREDENTIALS_JSON: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: |
echo "google service: $SERVICE_CREDENTIALS_JSON"
echo ${{ secrets.GOOGLE_SERVICES_JSON }} | base64 -d > app/google-services.json
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Run Unit Tests
run: ./gradlew test