Use M3 TransformingLazyColumn in Wear App #2412
Workflow file for this run
This file contains 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: Backend Test | |
on: pull_request | |
# Cancel any current or previous job from the same PR | |
concurrency: | |
group: backend-test-${{ github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
build-backend: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- uses: hashicorp/setup-terraform@v3 | |
- name: Build | |
run: ./gradlew :backend:service-graphql:build :backend:service-import:build |