Skip to content

Check if Activity is in picture-in-picture mode #207

Check if Activity is in picture-in-picture mode

Check if Activity is in picture-in-picture mode #207

Workflow file for this run

name: CI
on:
push:
branches:
- main
- develop
paths-ignore:
- '**.md'
pull_request:
types: [opened, reopened, synchronize]
paths-ignore:
- '**.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Java
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 17
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v5
with:
cache-read-only: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/develop' }}
cache-encryption-key: ${{ secrets.GRADLE_ENCRYPTION_KEY }}
- name: Run tests
run: ./gradlew test --configuration-cache
- name: Assemble
run: ./gradlew assembleRelease --configuration-cache