Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Initial Commit

Initial Commit #6

Workflow file for this run

name: build windows
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build_windows:
runs-on: windows-latest
strategy:
matrix:
configuration: [Debug, Release]
platform: [x86, x64]
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- uses: microsoft/[email protected]
- shell: cmd
run: |
msbuild ./Demo.sln /p:Configuration=${{matrix.configuration}} /p:Platform=${{matrix.platform}}