Add Single Project VSA Clean Architecture Template #2009
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |