Create xdm-wpf-build.yml
This commit is contained in:
parent
9f50f7fc94
commit
bd51c1c691
29
.github/workflows/xdm-wpf-build.yml
vendored
Normal file
29
.github/workflows/xdm-wpf-build.yml
vendored
Normal 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
|
Loading…
x
Reference in New Issue
Block a user