Skip to content

Onboarding, daily notification and more #235

Onboarding, daily notification and more

Onboarding, daily notification and more #235

name: Pull request checks
on:
pull_request:
merge_group:
types: [ checks_requested ]
jobs:
detekt:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Gradle cache
uses: gradle/gradle-build-action@v2
with:
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
- name: Detekt ♻️
run: ./gradlew detekt
unit_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Gradle cache
uses: gradle/gradle-build-action@v2
with:
cache-read-only: ${{ github.ref != 'refs/heads/develop' }}
- name: Decode google-services.json
env:
FIREBASE_CONFIG: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $FIREBASE_CONFIG > app/google-services.json
- name: Unit tests
run: ./gradlew test -x :screenshot_testing:test
screenshot_tests:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java 17
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 17
- name: Decode google-services.json
env:
FIREBASE_CONFIG: ${{ secrets.GOOGLE_SERVICES_JSON }}
run: echo $FIREBASE_CONFIG > app/google-services.json
- name: 📸 Snapshot tests
run: ./gradlew verifyPaparazziDebug