from my understanding, SqlDelight currently runs `...
# squarelibraries
j
from my understanding, SqlDelight currently runs
verifyMigrations
only on
check
runs, but if I run
assemble
or
install
(assume an Android project), then verify won't run. 1. is that right? 2. if so, is the solution to explicitly Gradle-wire the task to `assemble`/`install`? 3. if so, got a lazyweb snippet handy? the AGP variant.assembleProvider way seems to no longer be available in later versions.
j
It's correct. The compiler checks your code compiles, not that it's correct. Same way your tests and lint aren't running.
Not sure you need a solution, other than to ensure you're running check on CI
The verify task will only get slower and slower, so putting it between you and install isn't usually a good idea