diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index eec4832..7dc0e73 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -19,7 +19,7 @@ jobs: distribution: 'temurin' cache: 'gradle' - name: Test & Coverage - run: ./gradlew test --no-daemon + run: ./gradlew test --no-daemon --debug --stacktrace - name: Upload to Codecov if: ${{ matrix.java == '21' }} # Upload from a single matrix instance uses: codecov/codecov-action@v3 diff --git a/settings.gradle b/settings.gradle index 525ef54..2622d93 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,15 @@ -rootProject.name = 'schematic4j' +plugins { + id("com.gradle.enterprise") version("3.15.1") +} +gradleEnterprise { + if (System.getenv("CI") != null) { + buildScan { + publishAlways() + termsOfServiceUrl = "https://gradle.com/terms-of-service" + termsOfServiceAgree = "yes" + } + } +} + +rootProject.name = 'schematic4j' \ No newline at end of file