Skip to content

Move logo to assets folder #7

Move logo to assets folder

Move logo to assets folder #7

Workflow file for this run

name: Build MultiTenant.AspNetCore library
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build MultiTenant.AspNetCore library
runs-on: ubuntu-latest
steps:
- name: 📄 Checkout
uses: actions/checkout@v3
- name: 🛠️ Setup .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: 🛠️ Restore NuGet packages
run: dotnet restore
- name: 🚀 Build Solution
run: dotnet build --configuration Release
- name: 👟 Run tests
run: dotnet test