Hi! I have a KMP project with android and iOS targ...
# multiplatform
v
Hi! I have a KMP project with android and iOS targets, which lives in a separate repository from our native apps. I would like to set up a GitHub Workflow to make sure that every PR in KMP repo doesn't break the project. I wonder if running
./gradlew assemble
is a good idea? We don't have any tests in that repository yet and all I want to check is that everything still builds after changes.
c
./gradlew build
is effectively the same as
./gradlew assemble check
. If you don’t want to run checks (tests, lint, etc), then
./gradlew assemble
is the correct task to run.
thank you color 1
r
will that cover the iOS part as well @Casey Brooks?