From 081d3df9d55b238a88725f32c9dfc9acbc64f7b9 Mon Sep 17 00:00:00 2001 From: syaojun Date: Wed, 4 Mar 2026 12:17:37 +0800 Subject: [PATCH] fix(ci): format build and test command for better readability --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 582cccde3..bba2534f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -78,5 +78,8 @@ jobs: version: "21.7" - name: Build and Test On JDK 8 - run: mvn -B -e clean test -Pjdk8 -pl !geaflow/geaflow-plugins/geaflow-store/geaflow-store-vector - -Duser.timezone=Asia/Shanghai -Dlog4j.configuration="log4j .rootLogger=WARN, stdout" + run: | + mvn -B -e clean test -Pjdk8 \ + -pl !geaflow/geaflow-plugins/geaflow-store/geaflow-store-vector \ + -Duser.timezone=Asia/Shanghai \ + -Dlog4j.configuration="log4j .rootLogger=WARN, stdout"