Browse Source

Enable test execution in CI pipeline

- Add 'make test' step to PR build workflow
- Tests run after build and before code formatting checks
- Ensures all pull requests pass unit and integration tests

Co-authored-by: djeada <[email protected]>
copilot-swe-agent[bot] 1 month ago
parent
commit
adb6f2c9f5
1 changed files with 3 additions and 0 deletions
  1. 3 0
      .github/workflows/pr-build.yml

+ 3 - 0
.github/workflows/pr-build.yml

@@ -28,6 +28,9 @@ jobs:
       - name: Build project
       - name: Build project
         run: make build
         run: make build
 
 
+      - name: Run tests
+        run: make test
+
       - name: Check code formatting
       - name: Check code formatting
         run: make format-check
         run: make format-check