fix: update CI configuration to extend timeout and specify framework version for builds and tests#229
Conversation
…version for builds and tests
…to exclude benchmarks during test builds
…ect configuration
renovate bot
added a commit
to apollographql/subgraph-csharp-hotchocolate-annotation
that referenced
this pull request
Feb 18, 2026
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [Snapshooter.Xunit](https://redirect.github.com/SwissLife-OSS/Snapshooter) | `1.1.0` → `1.2.0` |  |  | --- ### Release Notes <details> <summary>SwissLife-OSS/Snapshooter (Snapshooter.Xunit)</summary> ### [`v1.2.0`](https://redirect.github.com/SwissLife-OSS/snapshooter/releases/tag/1.2.0) [Compare Source](https://redirect.github.com/SwissLife-OSS/Snapshooter/compare/1.1.0...1.2.0) ##### What's Changed - Added basic support for MSTest V4 by [@​N-Olbert](https://redirect.github.com/N-Olbert) in [SwissLife-OSS/snapshooter#220](https://redirect.github.com/SwissLife-OSS/snapshooter/pull/220) - MSTest: Use invariant culture conversion for snapshot name generation. by [@​N-Olbert](https://redirect.github.com/N-Olbert) in [SwissLife-OSS/snapshooter#222](https://redirect.github.com/SwissLife-OSS/snapshooter/pull/222) - Fix CI configuration and update project references for test builds by [@​glucaci](https://redirect.github.com/glucaci) in [SwissLife-OSS/snapshooter#225](https://redirect.github.com/SwissLife-OSS/snapshooter/pull/225) - fix: update CI configuration to extend timeout and specify framework version for builds and tests by [@​glucaci](https://redirect.github.com/glucaci) in [SwissLife-OSS/snapshooter#229](https://redirect.github.com/SwissLife-OSS/snapshooter/pull/229) - chore: use xunit.v3.extensibility.core instead of xunit.v3.core by [@​vhatsura](https://redirect.github.com/vhatsura) in [SwissLife-OSS/snapshooter#226](https://redirect.github.com/SwissLife-OSS/snapshooter/pull/226) - fix: update .NET setup to include version specification for builds by [@​glucaci](https://redirect.github.com/glucaci) in [SwissLife-OSS/snapshooter#230](https://redirect.github.com/SwissLife-OSS/snapshooter/pull/230) ##### New Contributors - [@​N-Olbert](https://redirect.github.com/N-Olbert) made their first contribution in [SwissLife-OSS/snapshooter#220](https://redirect.github.com/SwissLife-OSS/snapshooter/pull/220) - [@​vhatsura](https://redirect.github.com/vhatsura) made their first contribution in [SwissLife-OSS/snapshooter#226](https://redirect.github.com/SwissLife-OSS/snapshooter/pull/226) **Full Changelog**: <SwissLife-OSS/snapshooter@1.1.0...1.2.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apollographql/subgraph-csharp-hotchocolate-annotation). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMi4wIiwidXBkYXRlZEluVmVyIjoiNDMuMjIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This was referenced Feb 19, 2026
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the CI workflow to improve .NET version testing and job reliability. The main changes increase the test timeout, add explicit .NET version targeting, and prevent workflow cancellation on a single failure.
CI workflow improvements:
timeout-minutesfor thetestsjob from 15 to 60 minutes and added a descriptive job name that includes the .NET version being tested.fail-fast: falseoption in the matrix strategy to ensure that all matrix jobs run to completion even if one fails.-f net${{ matrix.dotnet-version }}.0flag to thedotnet buildanddotnet testcommands.