diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index 6136046..ebc770c 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -44,4 +44,4 @@ jobs: uses: codecov/codecov-action@v4.0.1 with: token: ${{ secrets.CODECOV_TOKEN }} - files: ./build/reports/jacoco/test/jacocoTestReport.xml + files: ./postgresql/build/reports/jacoco/test/jacocoTestReport.xml diff --git a/build.gradle b/build.gradle index d8c1e1c..3568bb6 100644 --- a/build.gradle +++ b/build.gradle @@ -74,6 +74,13 @@ allprojects { outputs.dir('data/test/output') outputs.dir('data/test/tmp') } + + jacocoTestReport { + reports { + xml.required = true + } + dependsOn test + } } dependencies { @@ -100,13 +107,6 @@ wrapper { distributionType = Wrapper.DistributionType.ALL } -jacocoTestReport { - reports { - xml.required = true - } - dependsOn test -} - allprojects { apply plugin: 'maven-publish' apply plugin: 'signing'