Create xdm-wpf-build.yml

master
Subhra Das Gupta 2022-08-03 22:46:39 +05:30 committed by GitHub
parent 9f50f7fc94
commit bd51c1c691
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 0 deletions

29
.github/workflows/xdm-wpf-build.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: .NET
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: windows-latest
defaults:
run:
working-directory: ./app/XDM/XDM.Wpf.UI/
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal