aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/pull-request.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/pull-request.yml')
-rw-r--r--.github/workflows/pull-request.yml32
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml
new file mode 100644
index 00000000..9d57f4b4
--- /dev/null
+++ b/.github/workflows/pull-request.yml
@@ -0,0 +1,32 @@
+name: Pull Request Build
+
+on:
+ workflow_dispatch:
+ pull_request:
+ types: [opened, reopened, synchronize]
+ paths-ignore:
+ - '.gitignore'
+ - '*.md'
+ - '.github/*.md'
+
+jobs:
+ build:
+ runs-on: windows-latest
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v6
+
+ - name: Setup MSVC
+ uses: ilammy/msvc-dev-cmd@v1
+
+ - name: Setup CMake
+ uses: lukka/get-cmake@latest
+
+ - name: Run CMake
+ uses: lukka/run-cmake@v10
+ env:
+ VCPKG_ROOT: "" # Disable vcpkg for CI builds
+ with:
+ configurePreset: windows64
+ buildPreset: windows64-debug