Skip to content

Commit

Permalink
add osx checks
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisjenx committed Jul 24, 2024
1 parent 1d2260b commit e783198
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,20 @@ jobs:
# with:
# components: 'platform-tools,build-tools-30.0.3'
- name: Run Android tests
run: ./gradlew :library:testDebugUnitTest :library:jvmTest --warn
run: ./gradlew :library:testDebugUnitTest --warn --continue
- name: Run Jvm tests
run: ./gradlew :library:jvmTest --warn --continue

Checks-Apple:
runs-on: macos-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Java JDK
uses: actions/[email protected]
with:
distribution: 'zulu'
java-version: '21'
cache: 'gradle'
- name: Run Apple tests
run: ./gradlew :library:iosSimulatorArm64Test --warn --continue
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ android.nonTransitiveRClass=true
#KMM
kotlin.mpp.androidGradlePluginCompatibility.nowarn=true
kotlin.apple.xcodeCompatibility.nowarn=true
kotlin.native.ignoreDisabledTargets=true

#Compose
org.jetbrains.compose.experimental.jscanvas.enabled=true

0 comments on commit e783198

Please sign in to comment.