mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/LegacyNetherFork.git
synced 2026-06-05 20:54:49 +00:00
35 lines
679 B
YAML
35 lines
679 B
YAML
name: Pull Request Build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
types: [opened, reopened, synchronize]
|
|
paths:
|
|
- '**'
|
|
- '!.gitignore'
|
|
- '!*.md'
|
|
- '!.github/**'
|
|
- '.github/workflows/pull-request.yml'
|
|
|
|
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
|