We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a5accb commit a5027b4Copy full SHA for a5027b4
.github/workflows/build.yml
@@ -27,4 +27,4 @@ jobs:
27
with:
28
cache-read-only: ${{ github.event_name == 'pull_request' }}
29
- name: Build
30
- run: ./gradlew build ${{ matrix.config.params }}
+ run: ./gradlew --scan build ${{ matrix.config.params }}
build.gradle.kts
@@ -140,3 +140,12 @@ tasks.wrapper {
140
gradleVersion = "6.8.3"
141
distributionType = Wrapper.DistributionType.ALL
142
}
143
+
144
+gradleEnterprise {
145
+ buildScan {
146
+ termsOfServiceUrl = "https://gradle.com/terms-of-service"
147
+ if (System.getenv().containsKey("CI")) {
148
+ termsOfServiceAgree = "yes"
149
+ }
150
151
+}
0 commit comments