From 849bb503b9e09310e8225c2997a5ceeb866dab31 Mon Sep 17 00:00:00 2001 From: Min Zhu Date: Fri, 26 Apr 2024 12:31:04 -0400 Subject: [PATCH] chore: fix confusing step name (#2692) This is step does `mvn install` and is not only unit tests. --- .github/workflows/nightly.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 355a651f55..12e239ae8c 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -23,7 +23,7 @@ jobs: distribution: temurin cache: maven - run: mvn -version - - name: Unit Tests + - name: Install run: mvn install --errors --batch-mode --no-transfer-progress -Dcheckstyle.skip -T 1C - name: Create issue if previous step fails if: ${{ failure() }}