Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
saket committed Feb 12, 2024
1 parent 31e4e17 commit 48f50a2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test_and_release_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ name: Run tests and publish snapshot

on:
push:
branches: [ trunk ]
pull_request:

jobs:
Expand All @@ -26,7 +25,7 @@ jobs:
secrets: ${{ toJSON(secrets) }}

- name: Run unit tests and friends
run: ./gradlew check
run: ./gradlew check --info --stacktrace

- name: Run paparazzi screenshot tests
run: ./gradlew verifyPaparazziDebug
Expand Down
6 changes: 6 additions & 0 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ dependencies {
implementation(libs.plugin.emulatorWtf)
implementation(libs.plugin.metalava)
implementation(libs.plugin.poko)

if (System.getenv("CI") == null) {
implementation(libs.plugin.jetbrains.compose)
} else {
implementation("org.jetbrains.compose:compose-gradle-plugin:1.6.0-beta02")
}
}
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ minSdk = "23"
compileSdk = "34"
kotlin = "1.9.22"
agp = "8.1.4"
jetbrains-compose = "1.5.12" # https://github.com/JetBrains/compose-multiplatform/releases
jetbrains-compose = "1.6.0-beta02" # https://github.com/JetBrains/compose-multiplatform/releases
androidx-compose-runtime = "1.6.1" # https://developer.android.com/jetpack/androidx/releases/compose
androidx-compose-ui = "1.6.1"
androidx-compose-ui-material3 = "1.2.0" # https://developer.android.com/jetpack/androidx/releases/compose-material3
Expand Down

0 comments on commit 48f50a2

Please sign in to comment.