Fix: the build failed when the .NET SDK version is 10 RC1. #16
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: unit tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| perform-unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the code | |
| - uses: actions/checkout@v4 | |
| # Install .NET SDK | |
| - name: Setup .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 8.0.x | |
| 9.0.x | |
| # Perform unit tests | |
| - name: Perform unit tests | |
| run: dotnet run --project ./Tests/BlazorMixApps.Test.csproj |