Centralize CI to SciML reusable workflows#152
Merged
Conversation
Convert all CI workflows to the centralized reusable workflows in SciML/.github (pinned @v1, secrets: inherit on every caller): - CI.yml: inline tests -> tests.yml@v1 (preserves lts/1/pre x ubuntu-latest x x64 matrix) - FormatCheck.yml: inline fredrikekre/runic-action -> runic.yml@v1 - SpellCheck.yml: inline crate-ci/typos -> spellcheck.yml@v1 - Downgrade.yml: inline -> downgrade.yml@v1 (preserves if: false, Core group, 1.10/1/pre, skip Pkg,TOML) - Documentation.yml: already a documentation.yml@v1 caller (unchanged) dependabot.yml: remove obsolete crate-ci/typos ignore (typos pin now lives in the central workflow); trim julia ecosystem to dirs with a Project.toml (/ and /docs). 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 the ADTypes.jl CI to the centralized SciML reusable workflows (pinned
@v1,secrets: "inherit"on every caller). End-state matches the Sundials.jl model: Tests, Documentation, Runic, SpellCheck, and Downgrade are all dispatched throughSciML/.github.Converted (inline -> central caller)
tests.yml@v1. Preserves the exact matrixversion: [lts, 1, pre] x os: [ubuntu-latest] x arch: [x64]. (The old inlinejulia-downgrade-compatstep was gated onmatrix.version == '1.6', which never matched the matrix, so it was dead code and is dropped. Codecov upload is handled by the central workflow.)fredrikekre/runic-action->runic.yml@v1.crate-ci/typos->spellcheck.yml@v1.downgrade.yml@v1. Preservesif: false, theCoregroup, julia-versions['1.10','1','pre'],skip: Pkg,TOML, andallow-reresolve: false.Unchanged
documentation.yml@v1caller withsecrets: "inherit".Other changes
crate-ci/typosignore (the typos version is now pinned inside the centralspellcheck.yml); trimmed thejuliaecosystemdirectoriesto those that actually have aProject.toml(/and/docs;/testhas none — test deps live in[extras]/[targets]).Checks
typos .— already clean (exit 0), 0 typos fixed.Runic.main(["--inplace","."])— no formatting changes (repo was already Runic-clean from the prior inline check).yaml.safe_load.Heads up
The check job names change (e.g. the test jobs now render via the reusable workflow). Branch-protection required-status-check names will need updating to match the new caller/job names.
🤖 Generated with Claude Code