Migrate CI to SciML centralized reusable workflows#262
Merged
ChrisRackauckas merged 1 commit intoJun 2, 2026
Merged
Conversation
Convert Tests, Downgrade, SpellCheck to centralized callers (@v1), add a Runic format-check caller, remove CompatHelper in favor of Dependabot's Julia ecosystem updates, and apply Runic formatting to all parseable Julia sources. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <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.
Please ignore until reviewed by @ChrisRackauckas.
Normalizes CI to the SciML centralized reusable workflows (
SciML/.github/.github/workflows/*.yml@v1), matching the Sundials.jl standard set.Workflows
Converted to centralized callers (@v1):
CI.yml->Tests.yml—tests.yml@v1. Preserves the exactname: CI, thepush/pull_requesttriggers withpaths-ignore: docs/**, the concurrency block, and the version matrix['1', 'lts', 'pre']. Coverage stays on (the original collected codecov).Downgrade.yml—downgrade.yml@v1. Preservesjulia-version: 1.10,skip: Pkg,TOML, and the disablingif: false(lower compat bounds don't resolve on Julia 1.10).SpellCheck.yml—spellcheck.yml@v1(was crate-ci/typos,pull_requesttrigger preserved).Added (new standard checks):
FormatCheck.yml—runic.yml@v1. The repo did not previously run Runic.Removed:
CompatHelper.yml— replaced by Dependabot's Julia ecosystem updates.Unchanged:
TagBot.yml.Runic formatting
The repo was previously unformatted (no Runic check). Runic 1.7.0 was run in-place over all 200 parseable tracked
.jlfiles and committed; they now passrunic --check.Heads-up — the Runic check will be RED. 11 legacy
.jlfiles contain pre-1.0 Julia syntax that Runic (JuliaSyntax) cannot parse, so the centralized check (which runs over all git-tracked.jlfiles) will fail on them:examples/benchmarking/updatetoplist.jlspikes/benchmarking.jl,spikes/comparing_covariate_selection_schemes.jl,spikes/covar_matrix_adaptation_es.jl,spikes/diversity_guided_mutation.jl,spikes/experiments/gss_initial.jl,spikes/lasso_active_factor_prediction.jl,spikes/parameter_study.jl,spikes/subset_tournament_cmsa_es/subset_tournament_cmsa_es.jl,spikes/test_acd.jl,spikes/test_acd_acf.jlThese are experimental/exploratory files (already excluded from the typos check) using deprecated syntax such as
2.^[2,6]andop = cond ? < : >. Fixing or removing them is a content change beyond CI normalization and is left to the maintainer's discretion. Runic has no exclude mechanism, so the check stays red until these are addressed.Dependabot
github-actionsblock (weekly).juliablock (directory: "/", daily, groupall-julia-packages: ["*"]) to preserve compat automation after CompatHelper removal. Only the repo root has aProject.toml(nodocs/Project.tomlortest/Project.toml).Spellcheck / typos
typosruns clean locally (exit 0); the existing.typos.tomlcovers the false positives. No prose was changed.Branch protection
Check names change (e.g.
test->Tests, plus newRunic Format Check). Branch-protection required-status-checks will need updating.🤖 Generated with Claude Code