Is there something like "cargo blame"?

Is there any automated tool that will run "cargo test" on github revs and branches to find where a bug went in? It takes about five minutes per version, and some automation would help.

Use case: cargo test failed at test test_demo_app . · Issue #6852 · emilk/egui · GitHub

git bisect run cargo test testname

should find where it started failing

3 Likes