From 5c839b32f00508e87263d355cdd63b238637c7ec Mon Sep 17 00:00:00 2001 From: Scott Walters Date: Mon, 1 Feb 2021 07:56:44 -0800 Subject: [PATCH] Build task --- .github/workflows/build.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..5a59daa --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,14 @@ +name: Build +on: [push, pull_request] + +jobs: + build: + runs-on: windows-2019 + steps: + - uses: actions/checkout@v2 + - name: Setup MSBuild.exe + uses: microsoft/setup-msbuild@v1.0.2 + - name: Restore packages + run: msbuild RAWGPlaynitePlugin.sln /t:restore + - name: Build + run: msbuild RAWGPlaynitePlugin.sln /t:build