Enable strict validation on CI (#467)

This commit is contained in:
Jake Wharton
2024-09-07 00:10:22 -04:00
committed by GitHub
parent b7516bc630
commit ad4233152e

View File

@ -13,4 +13,8 @@ publishing {
apiValidation {
klib.enabled = true
// We run API checks on a Mac where all possible Kotlin targets are available.
// Setting this to true will allow us to catch when targets are removed.
klib.strictValidation = System.getenv("CI") == "true"
}