Upgrade demo to support storyblock usage in compose #66
Workflow file for this run
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: Jetpack Compose CI | |
| concurrency: | |
| group: compose:${{ github.head_ref }} | |
| cancel-in-progress: true | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| paths: [ "compose/**" ] | |
| 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' | |
| cache: gradle | |
| - name: Build with Gradle | |
| run: | | |
| cd compose | |
| chmod +x ./gradlew | |
| ./gradlew build |