Skip to content

Commit

Permalink
add github actions workflow for build
Browse files Browse the repository at this point in the history
  • Loading branch information
vnau committed Jan 11, 2024
1 parent 8bd403d commit 95283be
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 95283be

Please sign in to comment.