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.
This commit is contained in:
amithkoujalgi 2025-09-29 11:15:21 +05:30
parent 501c35fa44
commit fd18a247d7
No known key found for this signature in database
GPG Key ID: E29A37746AF94B70

View File

@ -45,10 +45,10 @@ jobs:
settings-path: ${{ github.workspace }} settings-path: ${{ github.workspace }}
- name: Run unit tests - name: Run unit tests
run: mvn clean test -Punit-tests run: make unit-tests
- name: Run integration tests - name: Run integration tests
run: mvn clean verify -Pintegration-tests-basic run: make integration-tests-basic
env: env:
USE_EXTERNAL_OLLAMA_HOST: "true" USE_EXTERNAL_OLLAMA_HOST: "true"
OLLAMA_HOST: "http://localhost:11434" OLLAMA_HOST: "http://localhost:11434"