Skip to content

Commit

Permalink
add compose build test
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudgiuliani committed Dec 28, 2022
1 parent f75d31b commit 72817e5
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,35 @@ jobs:
- name: Build Android
run: cd android && ./test.sh

build-androidx-compose:
runs-on: ubuntu-latest
timeout-minutes: 30

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 11

- name: Setup Gradle
uses: gradle/gradle-build-action@v2

- name: Install Core
run: cd core && ./install.sh

- name: Install Android
run: cd android && ./install.sh

- name: Build AndroidX Compose
run: cd compose && ./install.sh

build-core-macos:
runs-on: macos-latest
timeout-minutes: 30
Expand Down

0 comments on commit 72817e5

Please sign in to comment.