From fd18a247d7be60a790a61bcdc014146a47bca13c Mon Sep 17 00:00:00 2001 From: amithkoujalgi Date: Mon, 29 Sep 2025 11:15:21 +0530 Subject: [PATCH] Update GitHub Actions workflow to use Makefile for test execution - Replaced Maven commands with Makefile targets for running unit and integration tests in the GitHub Actions workflow. - Updated the commands to `make unit-tests` and `make integration-tests-basic` for improved consistency and maintainability. --- .github/workflows/run-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c688063..d152333 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -45,10 +45,10 @@ jobs: settings-path: ${{ github.workspace }} - name: Run unit tests - run: mvn clean test -Punit-tests + run: make unit-tests - name: Run integration tests - run: mvn clean verify -Pintegration-tests-basic + run: make integration-tests-basic env: USE_EXTERNAL_OLLAMA_HOST: "true" OLLAMA_HOST: "http://localhost:11434" \ No newline at end of file