Update dependency com.patrykandpatryk.vico:compose to v1.9.1 #545
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: Android CI | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- name: Build android app | |
run: ./gradlew assembleDebug | |
- name: Run Unit Tests | |
run: ./gradlew test | |
- name: Build iOS shared code | |
run: ./gradlew :common:compileKotlinIosSimulatorArm64 | |