Skip to content

Commit 7e4e93a

Browse files
committed
Add --info flag to gradle so it actually prints why a test failed
1 parent 74725a6 commit 7e4e93a

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ jobs:
66
strategy:
77
matrix:
88
java: [11, 17, 21]
9+
fail-fast: false
910
steps:
1011
- uses: actions/checkout@v4
1112
- name: Set up Java
@@ -17,4 +18,4 @@ jobs:
1718
- name: Setup Gradle
1819
uses: gradle/actions/setup-gradle@v4
1920
- name: Build with Gradle
20-
run: ./gradlew build --no-daemon
21+
run: ./gradlew build --no-daemon --info

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
JRELEASER_NEXUS2_TOKEN: ${{ secrets.SONATYPE_OSSRH_PASSWORD }}
3131
JRELEASER_MAVENCENTRAL_USERNAME: ${{ secrets.SONATYPE_OSSRH_USERNAME }}
3232
JRELEASER_MAVENCENTRAL_TOKEN: ${{ secrets.SONATYPE_OSSRH_PASSWORD }}
33-
run: ./gradlew clean publish jreleaserDeploy --no-daemon -Prelease=${{ github.ref_name }}
33+
run: ./gradlew clean publish jreleaserDeploy --info --no-daemon -Prelease=${{ github.ref_name }}
3434

3535
- name: Generate Release Body
3636
run: ./gradlew generateReleaseBody

0 commit comments

Comments
 (0)