Skip to content

Commit 30153f3

Browse files
committed
gh action
1 parent 31ce934 commit 30153f3

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ jobs:
1919
- name: Check out Git repository
2020
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
2121

22-
- name: Gradle Build and Test
23-
uses: gradle/[email protected]
22+
- name: Setup Gradle
23+
uses: gradle/actions/setup-gradle@v4
2424
with:
25-
arguments: --build-cache build test koverXmlReport
25+
gradle-version: current
26+
27+
- name: Gradle Build and Test
28+
run: gradle --build-cache --configuration-cache build test koverXmlReport
2629

2730
- name: Upload coverage to Codecov
2831
uses: codecov/codecov-action@v4

projects/kediatr-quarkus-starter/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ dependencies {
1717
}
1818

1919
tasks.withType<KotlinCompile> {
20-
mustRunAfter("quarkusGenerateCode", "quarkusGenerateCodeDev")
20+
mustRunAfter(tasks.quarkusGenerateCode, tasks.quarkusGenerateCodeDev)
2121
}

0 commit comments

Comments
 (0)