Skip to content

WIP Unit test actions #19

WIP Unit test actions

WIP Unit test actions #19

Workflow file for this run

name: Build Library for CI
on:
push:
branches: [ "main", "workflow-improvements" ]
paths-ignore:
- "**.md"
pull_request:
branches: [ "main" ]
jobs:
build-plugin-ci:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v2
with:
dotnet-version: 7.0.x
- name: Install .NET MAUI
run: dotnet workload install maui
- name: Restore dependencies
run: dotnet restore src\Burkus.Mvvm.Maui.sln
- name: Build
run: dotnet build src\Burkus.Mvvm.Maui.sln -c Release
- name: Build and Run UnitTests
run: dotnet test tests\Burkus.Mvvm.Maui.UnitTests\Burkus.Mvvm.Maui.UnitTests.csproj --no-build --no-restore --verbosity normal