From bd51c1c691fde49d0f6ed11c56026669f054a6a8 Mon Sep 17 00:00:00 2001 From: Subhra Das Gupta <8403090+subhra74@users.noreply.github.com> Date: Wed, 3 Aug 2022 22:46:39 +0530 Subject: [PATCH] Create xdm-wpf-build.yml --- .github/workflows/xdm-wpf-build.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/xdm-wpf-build.yml diff --git a/.github/workflows/xdm-wpf-build.yml b/.github/workflows/xdm-wpf-build.yml new file mode 100644 index 0000000..08e4a0f --- /dev/null +++ b/.github/workflows/xdm-wpf-build.yml @@ -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