Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #62 +/- ##
=========================================
Coverage 100.0% 100.0%
=========================================
Files 33 52 +19
Lines 3291 6364 +3073
=========================================
+ Hits 3291 6364 +3073 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces a two-tiered mutation testing strategy: incremental testing on PRs and comprehensive nightly testing. The incremental approach on PRs tests only the diff to reduce CI time, while the new nightly workflow performs full mutation testing on a weekly schedule (or manually), but only when there have been commits in the last 24 hours.
- Adds a new nightly workflow that runs full mutation testing weekly (Mondays at 5:30 AM UTC) with a gatekeeper to skip if no recent commits
- Modifies the main workflow to run incremental mutation testing on PR diffs only, reducing testing time from potentially 90+ minutes to 45 minutes
- Both workflows use the same tooling versions (cargo-mutants 25.3.1, Rust 1.91, sccache v0.12.0) for consistency
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
.github/workflows/nightly.yml |
New workflow file that adds scheduled full mutation testing with a gatekeeper job to skip when no recent commits exist |
.github/workflows/main.yml |
Modified mutation testing to be incremental by generating and testing only the PR diff, reducing execution time |
99e3a2e to
2421347
Compare
Member
Author
Contributor
ralfbiedert
approved these changes
Nov 22, 2025
Darksecond
approved these changes
Nov 24, 2025
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.
Addresses #60