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