瀏覽代碼

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 月之前
父節點
當前提交
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