From 95283beac158383a2101f78cfefcdcd4005463d4 Mon Sep 17 00:00:00 2001 From: vnau <20983143+vnau@users.noreply.github.com> Date: Thu, 11 Jan 2024 21:25:25 +0100 Subject: [PATCH] add github actions workflow for build --- .github/workflows/build.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..d31d65f --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,23 @@ +name: build + +on: + push: + branches: + - master + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v1.0.2 + + - name: Restore NuGet packages + run: nuget restore + + - name: Build solution + run: msbuild /p:Configuration=Debug /p:Platform="Any CPU" IviVisaNetSample.sln