Skip to content

[UI] Added Project

[UI] Added Project #83

Workflow file for this run

name: Build and Test ASP.NET Core
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: '7.0.307'
- name: Restore dependencies
run: dotnet restore src/aspnetrun-microservices.sln
- name: Build
run: dotnet build --configuration Release src/aspnetrun-microservices.sln
- name: Test
run: dotnet test --configuration Release --no-build src/aspnetrun-microservices.sln