Skip to content

Commit 9b39eec

Browse files
authored
Create build.yml
1 parent 4362afc commit 9b39eec

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build
2+
on:
3+
push:
4+
branches:
5+
- "*"
6+
pull_request:
7+
branches:
8+
- "master"
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
timeout-minutes: 15
13+
steps:
14+
- name: Checkout
15+
uses: actions/checkout@v4
16+
- name: Add msbuild to PATH
17+
uses: microsoft/setup-msbuild@v2
18+
- name: Restore
19+
run: nuget restore ./src/SvnManager.sln
20+
- name: Build
21+
run: msbuild ./src/SvnManager.sln

0 commit comments

Comments
 (0)