Skip to content

Commit

Permalink
#209 - 누락된 GitHub Action Step 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
rkttu committed May 13, 2024
1 parent bea4bb9 commit 612655f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
env:
Solution_Name: src\TableCloth.sln
Spork_Project_Path: src\Spork\Spork.csproj
Sponge_Project_Path: src\Sponge\Sponge.csproj
Test_Project_Path: src\TableCloth.Test\TableCloth.Test.csproj
TableCloth_Project_Path: src\TableCloth\TableCloth.csproj
Platform: ${{ matrix.platform }}
Expand Down Expand Up @@ -69,6 +70,12 @@ jobs:
env:
Configuration: ${{ matrix.configuration }}

# Build Sponge project separately
- name: Build Sponge project
run: msbuild $env:Sponge_Project_Path /p:Configuration=$env:Configuration /p:Platform=$env:Platform /m
env:
Configuration: ${{ matrix.configuration }}

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test $env:Test_Project_Path -r win-${{ env.Platform }} -c:$env:Configuration
Expand Down

0 comments on commit 612655f

Please sign in to comment.