Skip to content

Architecture: Migration to MVVM framework #32

Architecture: Migration to MVVM framework

Architecture: Migration to MVVM framework #32

Workflow file for this run

name: CI
on:
push:
branches:
- 'master'
- 'develop'
- 'feature/**'
paths:
- '**.cs'
pull_request:
branches:
- 'master'
- 'develop'
- 'feature/**'
paths:
- '**.cs'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 3.1.x
uses: actions/setup-dotnet@v3
with:
dotnet-version: 3.1.x
- name: Build 3.x
run: dotnet build -f netcoreapp3.1
- name: Test
run: dotnet test --no-build --verbosity normal