From 94a11036a3f7e1df53f15287cb3dcae0a1583034 Mon Sep 17 00:00:00 2001 From: Lantao Jin Date: Wed, 16 Oct 2024 15:01:41 +0800 Subject: [PATCH] Move style check ahead of Integ Test Signed-off-by: Lantao Jin --- .github/workflows/test-and-build-workflow.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-and-build-workflow.yml b/.github/workflows/test-and-build-workflow.yml index 501b2b737..f8d9bd682 100644 --- a/.github/workflows/test-and-build-workflow.yml +++ b/.github/workflows/test-and-build-workflow.yml @@ -22,8 +22,8 @@ jobs: distribution: 'temurin' java-version: 11 - - name: Integ Test - run: sbt integtest/integration - - name: Style check run: sbt scalafmtCheckAll + + - name: Integ Test + run: sbt integtest/integration