[go: up one dir, main page]

Skip to content

Add Compose code for Analytics #2561

Add Compose code for Analytics

Add Compose code for Analytics #2561

Workflow file for this run

name: Android CI
on:
- pull_request
- push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 11
uses: actions/setup-java@v1
with:
java-version: 11
- name: Check Snippets
run: python scripts/checksnippets.py
- name: Copy mock google_services.json
run: ./copy_mock_google_services_json.sh
- name: Build with Gradle (Pull Request)
run: ./build_pull_request.sh
if: github.event_name == 'pull_request'
- name: Build with Gradle (Push)
run: ./gradlew clean ktlint build
if: github.event_name != 'pull_request'