Migrate benchmark workflow from BenchmarkCI to AirspeedVelocity#7
Merged
Krastanov merged 1 commit intoFeb 20, 2026
Conversation
Replaces the manual BenchmarkCI workflow (50+ lines) with the modern AirspeedVelocity action (3 lines). Changes: - Replaced benchmark.yml with AirspeedVelocity action - Deleted benchmark-comment.yml (no longer needed) Benefits: - Much simpler and easier to maintain - Consistent with other repos in the organization - Automatic PR comments with benchmark results - Better integration with GitHub Actions The AirspeedVelocity action handles all the complexity internally: - Running benchmarks on base and PR branches - Comparing results and generating reports - Posting formatted comments to PRs 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
12ac9a0 to
e08215f
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #7 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 1 1
Lines 7 7
=========================================
Hits 7 7 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
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.
Summary
Migrates the benchmark workflow from manual BenchmarkCI implementation to the modern AirspeedVelocity action.
Changes
MilesCranmer/AirspeedVelocity.jl@action-v1Benefits
✅ Much simpler - Reduces workflow from 50+ lines to just 3 lines
✅ Easier to maintain - No manual artifact handling or complex scripts
✅ Consistent - Matches other repos in the organization
✅ Modern - Uses the recommended Julia benchmarking action
✅ Same functionality - Automatic PR comments with benchmark comparisons
Migration Details
Before (BenchmarkCI):
After (AirspeedVelocity):
The action handles everything automatically:
Test Plan
Reference
🤖 Generated with Claude Code