Skip to content

Commit 4e93057

Browse files
committed
Merge branch 'main' of https://github.com/arkangel-dev/SyncPlay.NET into main
2 parents b7388ed + 03a892a commit 4e93057

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/main.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Build and Tests
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: windows-latest
12+
defaults:
13+
run:
14+
working-directory: SyncPlayWPF
15+
steps:
16+
- uses: actions/checkout@v2
17+
18+
- name: Setup MSBuild
19+
uses: microsoft/setup-msbuild@v1
20+
21+
- name: Setup NuGet
22+
uses: NuGet/[email protected]
23+
24+
- name: Restore Packages
25+
run: nuget restore SyncPlayWPF.sln
26+
27+
- name: Build Solution
28+
run: |
29+
msbuild.exe SyncPlayWPF.sln /p:platform="Any CPU" /p:configuration="Release"

0 commit comments

Comments
 (0)