Migrate CI to centralized SciML reusable workflows#61
Merged
ChrisRackauckas merged 1 commit intoJun 2, 2026
Merged
Conversation
Convert Tests, Documentation, format-check (Runic), Spell Check, and Downgrade workflows to call the centralized reusable workflows in SciML/.github (pinned @v1). Behavior and test matrices are preserved. - Tests.yml: matrix of tests.yml@v1 callers (version x group, QA excluded on lts); non-standard Enzyme job kept as-is (separate test/enzyme env). - Documentation.yml: documentation.yml@v1 caller (debug-documenter: true). - Downgrade.yml: downgrade.yml@v1 caller, kept disabled (if: false), julia-version 1.10, skip Pkg,TOML, allow-reresolve false. - FormatCheck.yml: runic.yml@v1 caller (already ran Runic; repo formatted). - SpellCheck.yml: spellcheck.yml@v1 caller. - dependabot.yml: removed crate-ci/typos ignore block; added /test/enzyme to the julia directories list. 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
This PR normalizes the CI of LineSearch.jl to the SciML centralized reusable workflows in
SciML/.github(every caller pinned@v1,secrets: inherit). Existing behavior and test matrices are preserved exactly.Workflows converted
tests.yml@v1callers. Preserves the exact matrix:version∈ {1,lts} ×group∈ {Core,LineSearchesJL,QA}, excludingQAonlts. Coverage stays on (caller default). The non-standard Enzyme Tests job (separatetest/enzymeenvironment, customPkg.develop/instantiate+test/enzyme/runtests.jl) is kept as a regular step-based job in the same file since the reusable tests workflow cannot reproduce it.documentation.yml@v1caller withdebug-documenter: true(original setJULIA_DEBUG=Documenter). Coverage stays on (caller default, matching original--code-coverage=user).downgrade.yml@v1caller. Kept disabled (if: false, as in the original), preservingjulia-version: "1.10",skip: "Pkg,TOML",allow-reresolve: false.runic.yml@v1caller.spellcheck.yml@v1caller.Runic
The repo already ran Runic (via
fredrikekre/runic-action). I ranRunic.main(["--check", "."])(Runic v1.7.0) locally and it passed with no changes, so no formatting commit was needed.Spellcheck / typos
Ran
typoslocally — no typos found, no_typos.tomlneeded.Dependabot / CompatHelper
CompatHelper.ymlexisted, so nothing to remove.crate-ci/typosignore block (standing policy: keep everything current). Preserved the existingjuliadirectories (/,/docs,/test) and added/test/enzyme(it has its ownProject.toml). Thegithub-actionsblock (directory: "/", weekly) and thejuliablock (daily,all-julia-packagesgroup) are otherwise unchanged.Heads-up
Tests / Testsrather thanCore - Julia 1), so any required-status-check names in branch protection need updating to match.fail_ci_if_error: trueon codecov; the centralizeddocumentation.yml@v1does not set that flag (defaults to false). This makes the docs build slightly more tolerant of codecov upload failures.🤖 Generated with Claude Code