ci: migrate format tooling from JuliaFormatter to Runic - #1599
Merged
ChrisRackauckas merged 2 commits intoJun 7, 2026
Conversation
Adds the standard SciML centralized format-check caller workflow, which was the remaining missing format workflow. SciMLBenchmarks is Runic-exempt, so this uses the JuliaFormatter-family format-check.yml@v1 caller (matching the JumpProcesses.jl form) rather than the Runic caller. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
SciMLBenchmarks is a Runic repo (per BDFL decree). Switch the format tooling to match the SciML fleet standard: - FormatCheck.yml now calls SciML/.github runic.yml@v1 (Runic check), matching SciML/ADTypes.jl and SciML/SciMLBase.jl. - Add RunicSuggestions.yml calling runic-suggestions-on-pr.yml@v1. - Remove FormatSuggestions.yml (JuliaFormatter suggestions workflow). - Remove .JuliaFormatter.toml (unused by Runic). - Reformat all tracked .jl files with Runic v1.7.0 so the Runic check is green. Formatting was produced solely by Runic --inplace over the same 'git ls-files -- *.jl' scope that runic.yml@v1 checks; no manual edits. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
ChrisRackauckas
marked this pull request as ready for review
June 7, 2026 16:20
1 task
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.
Migrates SciMLBenchmarks.jl format tooling from JuliaFormatter to Runic, matching the BDFL decree that SciMLBenchmarks is a Runic repo (unlike Catalyst/JumpProcesses, which stay JuliaFormatter).
Changes
.github/workflows/FormatCheck.yml: now callsSciML/.github/.github/workflows/runic.yml@v1(the Runic check), replacing the JuliaFormatterformat-check.yml@v1. Copied verbatim from the SciML fleet standard (identical toSciML/ADTypes.jlandSciML/SciMLBase.jl)..github/workflows/RunicSuggestions.yml(new): callsSciML/.github/.github/workflows/runic-suggestions-on-pr.yml@v1, copied verbatim from the Runic siblings..github/workflows/FormatSuggestions.yml(removed): the JuliaFormatterformat-suggestions-on-pr.yml@v1workflow (merged in ci: add standard centralized workflows (auto-format, dependabot-automerge, docs-preview-cleanup) #1598). Removing it on this branch deletes it on merge..JuliaFormatter.toml(removed): unused by Runic..jlfiles with Runic so the Runic check is green.Runic formatting details
Pkg.add(name="Runic", version="1"), exactly asrunic.yml@v1/fredrikekre/runic-action@v1does with its defaultrunic-version: "1").git ls-files -- *.jlset thatrunic.yml@v1checks (10 tracked.jlfiles; SciMLBenchmarks is mostly.jmd, which is not in scope with the defaultextensions: jl).Runic --inplaceover that scope; no manual edits. Changes are mechanical (float-literal normalization like1e-2->1.0e-2, trailing commas / bracket placement in multi-line arrays, space-after-comma inTuple{String,String}, and CRLF->LF normalization in two files).Runic.main(["--check", "--diff", "--verbose", <files>]), which exits clean (rc=0): all 10 files report passing.Generated with Claude Code