Skip to content

Commit 1fab30d

Browse files
committed
Add Kotlin steps to the GitHub Actions workflow
1 parent 9076784 commit 1fab30d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/continuous-integration-build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,18 @@ jobs:
3232
working-directory: ./initial
3333
run: ./gradlew build
3434

35+
- name: Build Initial Kotlin with Gradle
36+
working-directory: ./initial-kotlin
37+
run: ./gradlew build
38+
3539
- name: Build Complete with Maven
3640
working-directory: ./complete
3741
run: ./mvnw --batch-mode clean package
3842

3943
- name: Build Complete with Gradle
4044
working-directory: ./complete
4145
run: ./gradlew build
46+
47+
- name: Build Complete Kotlin with Gradle
48+
working-directory: ./complete-kotlin
49+
run: ./gradlew build

0 commit comments

Comments
 (0)