Skip to content

Add Single Project VSA Clean Architecture Template #2009

Add Single Project VSA Clean Architecture Template

Add Single Project VSA Clean Architecture Template #2009

Workflow file for this run

name: .NET Core
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v5
with:
dotnet-version: '10.0.x'
- name: Build Full Template
run: dotnet build ./Clean.Architecture.slnx -c Release
- name: Test Full Template
run: dotnet test ./Clean.Architecture.slnx -c Release --no-build --verbosity normal
- name: Build MinimalClean Template
run: dotnet build ./MinimalClean/MinimalClean.Architecture.slnx -c Release