Skip to content

NuGets

NuGets #128

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build ${{ matrix.configuration }}
runs-on: windows-2022
strategy:
matrix:
configuration: ['Debug', 'Release']
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: nuget restore
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
- name: Build
run: msbuild /p:Configuration=${{ matrix.configuration }}