Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions .github/workflows/build-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Build Check

on:
pull_request:
branches:
- main
workflow_dispatch:


jobs:
build-check:
permissions:
contents: write
runs-on: windows-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2

- name: Setup vcpkg
uses: lukka/run-vcpkg@v11

- name: Integrate vcpkg with MSBuild
run: vcpkg integrate install
shell: cmd

- name: Build DLL
run: msbuild mod-loader.sln /p:Configuration=Release /p:Platform=x64
shell: pwsh
Loading