Bump androidx.annotation:annotation from 1.8.0 to 1.9.0 #316
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: Build Check | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
android: | |
name: Android | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
cache: 'gradle' | |
- name: Check code | |
run: ./gradlew check | |
- name: Build Android app | |
run: ./gradlew :android-app:bundleRelease | |
ios: | |
name: iOS | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
cache: 'gradle' | |
- name: Setup XCode 15.3 | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.3' | |
- name: Check code | |
run: ./gradlew check | |
- name: Generate dummy framework | |
run: ./gradlew :multiplatform:generateDummyFramework | |
- name: Install pods | |
run: | | |
cd ios-app | |
pod install --repo-update | |
- name: Build iOS app | |
run: > | |
xcodebuild | |
-workspace ios-app/ClickTrack.xcworkspace | |
-scheme ClickTrack | |
-configuration Debug | |
-sdk iphonesimulator | |
-arch arm64 |