Skip to content

fix github workflow restore #2

fix github workflow restore

fix github workflow restore #2

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
- name: Test
run: dotnet test --no-build --verbosity normal UserManagement.Application.UnitTests