From 672177f5709a1492ab3978cd5045869dc09aa115 Mon Sep 17 00:00:00 2001 From: Shantur Rathore Date: Thu, 19 Mar 2026 14:52:48 +0000 Subject: [PATCH] add PR build validation workflow Run the full cross-platform build matrix on pull request creation and updates so build regressions are caught before merge without publishing release artifacts. --- .github/workflows/pr-build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/pr-build.yml diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml new file mode 100644 index 00000000..6cebdbd7 --- /dev/null +++ b/.github/workflows/pr-build.yml @@ -0,0 +1,23 @@ +name: PR Build Validation + +on: + pull_request: + types: + - opened + - synchronize + - reopened + +permissions: + contents: read + +concurrency: + group: pr-build-${{ github.event.pull_request.number }} + cancel-in-progress: true + +jobs: + build: + uses: ./.github/workflows/build-and-upload.yml + with: + ref: ${{ github.event.pull_request.head.sha }} + upload: false + set_versions: false