Update screenshot for liquid glass #230
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Android CI | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ '*' ] | |
| jobs: | |
| lint: | |
| name: Spotless check | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6.0.1 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5.1.0 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - name: spotless | |
| run: ./gradlew spotlessCheck | |
| api_check: | |
| name: API check | |
| runs-on: macos-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6.0.1 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v5.1.0 | |
| with: | |
| distribution: 'zulu' | |
| java-version: 21 | |
| - name: API check | |
| run: ./gradlew apiCheck | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6.0.1 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5.1.0 | |
| with: | |
| distribution: zulu | |
| java-version: 21 | |
| - uses: gradle/gradle-build-action@v3.4.2 | |
| - name: Make Gradle executable | |
| run: chmod +x ./gradlew | |
| - name: Build with Gradle | |
| run: ./gradlew build |