We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ef2f48 commit fc78398Copy full SHA for fc78398
.github/workflows/build.yml
@@ -7,23 +7,6 @@ on:
7
pull_request:
8
9
jobs:
10
- test:
11
- name: Run Unit Tests
12
- runs-on: ubuntu-latest
13
- steps:
14
- - name: Checkout Repository
15
- uses: actions/checkout@v4
16
-
17
- - name: Set-Up JDK
18
- uses: actions/setup-java@v4
19
- with:
20
- distribution: 'temurin'
21
- java-version: '21'
22
- cache: 'gradle'
23
24
- - name: Run Tests
25
- run: ./gradlew test --no-daemon
26
27
build:
28
concurrency:
29
group: ${{ github.workflow }}-${{ github.ref }}
common/build.gradle.kts
@@ -82,3 +82,9 @@ tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
82
jvmTarget = "17"
83
}
84
85
+
86
+subprojects {
87
+ tasks.named("build") {
88
+ dependsOn("test")
89
+ }
90
+}
0 commit comments