-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Collapse integration convention plugin with resolution to source build (
#622) * Collapse integration convention plugin with resolution to source build * chore(deps): update hashicorp/setup-terraform action to v3 (#621) Co-authored-by: playground-manager[bot] <126197455+playground-manager[bot]@users.noreply.github.com> * Migrate sources to common main --------- Co-authored-by: playground-manager[bot] <126197455+playground-manager[bot]@users.noreply.github.com>
- Loading branch information
1 parent
f2dbd6a
commit 198ddd2
Showing
12 changed files
with
93 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 0 additions & 24 deletions
24
build-plugins/src/main/kotlin/io.ashdavies.integration.gradle.kts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 12 additions & 0 deletions
12
cloud-run/src/commonTest/kotlin/io/ashdavies/cloud/CloudRunCommonTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.ashdavies.cloud | ||
|
||
import kotlin.test.Test | ||
import kotlin.test.assertEquals | ||
|
||
internal class CloudRunCommonTest { | ||
|
||
@Test | ||
fun `should assert equality`() { | ||
assertEquals(4, 2 + 2) | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
cloud-run/src/jvmTest/kotlin/io/ashdavies/cloud/CloudRunJvmTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package io.ashdavies.cloud | ||
|
||
import kotlin.test.Test | ||
import kotlin.test.assertEquals | ||
|
||
internal class CloudRunJvmTest { | ||
|
||
@Test | ||
fun `should assert equality`() { | ||
assertEquals(4, 2 + 2) | ||
} | ||
} |