Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ jobs:
- uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- run: dotnet restore
- run: dotnet test NumFlat.sln --configuration Release
- run: dotnet restore NumFlat.slnx
- run: dotnet test NumFlat.slnx --configuration Release
Comment on lines 14 to +18

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge .NET 8 workflow cannot run .slnx solution

The workflow installs the .NET 8.0.x SDK and then calls dotnet restore NumFlat.slnx and dotnet test NumFlat.slnx. The new .slnx solution format is only supported by newer SDK/MSBuild versions; the 8.x CLI accepts .sln/.slnf only, so on the GitHub runner these steps will fail before tests execute and CI remains red. Updating the SDK to a version that understands .slnx or using a compatible solution file is needed for the job to succeed.

Useful? React with 👍 / 👎.