Skip to content

Add script to install Windows Sdk #2

Add script to install Windows Sdk

Add script to install Windows Sdk #2

Workflow file for this run

name: CI
on:
push:
branches:
- main
- release/**
pull_request:
types: [opened, synchronize, reopened]
branches:
- main
- release/**
env:
STEP_TIMEOUT_MINUTES: 60
jobs:
build:
name: Integrate
runs-on: windows-latest
strategy:
matrix:
project:
- Rebound/Rebound.csproj
- About/Rebound.About.csproj
# Add more in the future as more projects are added
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Dependencies
timeout-minutes: ${{ fromJSON(env.STEP_TIMEOUT_MINUTES) }}
uses: "./.github/steps/install_dependencies"
- name: Setup MSBuild
uses: microsoft/[email protected]
- name: Build ${{ matrix.project }}
shell: pwsh
run: msbuild ${{ matrix.project }} /p:Configuration=Release /r