CreamInstaller/.github/workflows/msbuild.yml
2021-12-25 23:20:41 -06:00

24 lines
433 B
YAML

name: MSBuild
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
restore:
name: Restore
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v1.1.1
- name: Restore Solution
run: msbuild CreamInstaller.sln /t:Restore /p:Configuration=Release