Skip to content

Commit ae3de67

Browse files
author
raven-intheclouds
committed
ci: Add build workflow
1 parent ba30303 commit ae3de67

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Build
2+
3+
on: [push, pull_request, workflow_dispatch]
4+
5+
jobs:
6+
build:
7+
name: Build
8+
runs-on: windows-2022
9+
steps:
10+
- name: Checkout
11+
uses: actions/checkout@v1
12+
13+
- name: Add msbuild to PATH
14+
uses: microsoft/setup-msbuild@v1
15+
16+
- name: Setup NuGet
17+
uses: nuget/setup-nuget@v1
18+
19+
- name: Restore NuGet packages
20+
run: nuget restore
21+
22+
- name: Build
23+
run: msbuild /p:Configuration=Release /p:Platform=x64 /p:SourceLinkCreate=false

0 commit comments

Comments
 (0)