Skip to content

Unit tests for User Queries and Commands #8

Unit tests for User Queries and Commands

Unit tests for User Queries and Commands #8

Workflow file for this run

name: .NET windows build
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore UserManagement.API
- name: Build
run: dotnet build --no-restore UserManagement.API
- name: Test
run: dotnet test --verbosity normal UserManagement.Application.UnitTests