Skip to content

Bump actions/checkout from 4 to 6 #796

Bump actions/checkout from 4 to 6

Bump actions/checkout from 4 to 6 #796

Workflow file for this run

name: MSBuild
on: push
jobs:
build:
runs-on: windows-2019
strategy:
matrix:
configuration: [Debug, Release]
steps:
- uses: actions/checkout@v6
- uses: microsoft/setup-msbuild@v2.0.0
- uses: NuGet/setup-nuget@v2.0.1
- name: Restore NuGet packages
run: nuget restore
- name: Build the application
run: msbuild /p:Configuration=$env:Configuration
env:
Configuration: ${{ matrix.configuration }}