Centralize CI on SciML reusable workflows#50
Merged
ChrisRackauckas merged 1 commit intoJun 3, 2026
Conversation
Convert Documentation, format-check (Runic), and Spell Check workflows to the centralized SciML/.github reusable callers (@v1) with secrets: "inherit". Remove the crate-ci/typos dependabot ignore now that typos runs via the central spellcheck workflow. 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.
Converts ColPrac's CI to the centralized SciML reusable workflows (pinned
@v1, every caller withsecrets: "inherit").ColPrac is a meta/docs repo (empty
src/ColPrac.jlmodule, emptytest/runtests.jl), so per the centralization policy only the applicable checks are wired up — no Tests, no Downgrade callers were added.Converted (inline -> central caller)
Documentation.yml->SciML/.github/.github/workflows/documentation.yml@v1FormatCheck.yml(Runic,fredrikekre/runic-action) ->runic.yml@v1SpellCheck.yml(crate-ci/typos) ->spellcheck.yml@v1Each workflow keeps its existing
name:andon:triggers; each caller getssecrets: "inherit".Cleanup
crate-ci/typosignore fromdependabot.yml(typos now versioned via the central spellcheck workflow). Thegithub-actions(weekly) andjulia(daily, all-julia-packages) blocks are preserved.Added
Checks
Runic.main(["--inplace","."])locally — no formatting changes needed (the only.jlfiles are trivial).typos -w .thentypos .— 0 findings, no changes. Typos fixed: 0.Note on behavior differences
coverage-directories: "src,ext"(default) and does not setfail_ci_if_error: true, whereas the previous inline workflow usedsrconly withfail_ci_if_error: true. ColPrac has noext/, so coverage scope is effectively unchanged; codecov no longer hard-fails the doc job on upload error.Warning
Check names change (e.g. job display names now come from the reusable workflows). Branch-protection required-status-check names will need updating.
🤖 Generated with Claude Code