Skip to content

Commit

Permalink
ci: Investigate failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
SandroHc committed Dec 15, 2023
1 parent b247bf5 commit 2bac037
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 14 additions & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 2bac037

Please sign in to comment.