Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| - 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 |
There was a problem hiding this comment.
.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 👍 / 👎.
Summary
Testing
Codex Task