Просмотр исходного кода

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 месяц назад
Родитель
Сommit
adb6f2c9f5
1 измененных файлов с 3 добавлено и 0 удалено
  1. 3 0
      .github/workflows/pr-build.yml

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

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