From ccd795ce609aeae5bea843d7085911e22ebd651e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20=C4=8Cerpnjak?= Date: Thu, 14 Mar 2024 20:03:14 +0100 Subject: [PATCH] Update main.yml Added running tests for Order gRPC API --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7aa6030..72d28bc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,6 +27,11 @@ jobs: distribution: 'temurin' cache: maven - - name: Build and test with Maven + - name: Build and test User Management API working-directory: ./UserManagementAPI run: mvn -B package --file pom.xml + + + - name: Build and test Orders gRPC API + working-directory: ./OrderProcessingAPI + run: mvn -B package --file pom.xml