From c1963669a1a109daf5b54edcd799757819db9006 Mon Sep 17 00:00:00 2001 From: neodiX Date: Fri, 2 Aug 2024 18:42:18 +0200 Subject: [PATCH] workflow change test order --- .github/workflows/tests.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 273de7a7..f6df0d76 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,6 +14,11 @@ jobs: java-version: '8' distribution: 'adopt' + - name: Run Address tests + run: | + cd address + mvn test + - name: Run Utils tests run: | cd utils @@ -27,9 +32,4 @@ jobs: - name: Run Cell tests run: | cd cell - mvn test - - - name: Run Address tests - run: | - cd address mvn test \ No newline at end of file