Minor code improvements #104
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: MusicManager | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- '.github/workflows/**' | |
jobs: | |
build: | |
name: 🛠️ Build and test | |
runs-on: windows-2022 | |
steps: | |
- name: 🔖 Check-out | |
uses: actions/checkout@v4 | |
- name: ⚙️ Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: 🛠️ Build | |
run: msbuild ./src/MusicManager/MusicManager.sln /restore /p:Configuration=Release /p:GenerateAppxPackageOnBuild=false | |
- name: 🕵️ Test Domain | |
run: dotnet test ./src/MusicManager/MusicManager.Domain.Test/MusicManager.Domain.Test.csproj -c Release --no-build | |
- name: 🕵️ Test Applications | |
run: dotnet test ./src/MusicManager/MusicManager.Applications.Test/MusicManager.Applications.Test.csproj -c Release --no-build | |
- name: 🕵️ Test Presentation | |
run: dotnet test ./src/MusicManager/MusicManager.Presentation.Test/MusicManager.Presentation.Test.csproj -c Release --no-build |