fix: restore GHA workflow, fix failing tests, add AGENTS.md#1
Merged
ryan-circleci merged 4 commits intomainfrom Mar 19, 2026
Merged
fix: restore GHA workflow, fix failing tests, add AGENTS.md#1ryan-circleci merged 4 commits intomainfrom
ryan-circleci merged 4 commits intomainfrom
Conversation
The workflow was removed during the CircleCI migration but the README badge still references it, causing a broken badge on the repo. Made-with: Cursor
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…golden files
Runs within a single provider were incorrectly launched in parallel
goroutines, causing non-deterministic result ordering that violated the
documented contract ("individual runs on a single provider are executed
sequentially") and broke TestRunnerRun assertions.
Also updates log formatter golden files to include the Score column
added to the log output format.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
…sitive Reverts the sequential run change — runs within a provider intentionally execute in parallel for throughput. Updates the doc comment to match. Fixes TestRunnerRun by sorting results by (Run, Task, Got, Want) before comparing, since parallel execution produces non-deterministic ordering. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
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
.github/workflows/go.yml(removed during CircleCI migration) so the README build badge works againtestdata/empty.log,testdata/results.log) to include theScorecolumn that was added to the log output formatTestRunnerRunorder-insensitive — runs within a provider execute in parallel, so result ordering is non-deterministic; tests now sort by(Run, Task, Got, Want)before comparingNewDefaultRunnerdoc comment to reflect that runs within a provider also run in parallel (not sequential as previously documented)AGENTS.mdwith build/test commands, architecture overview, and a reminder to always targetCircleCI-Research/evalbench(not the upstream forkpetmal/MindTrial)Test plan
go test -tags=test -race ./...)main🤖 Generated with Claude Code