Migrate CI to SciML centralized reusable workflows#4
Merged
ChrisRackauckas merged 1 commit intoJun 2, 2026
Merged
Conversation
Convert to the standard SciML reusable-workflow callers (pinned @v1): - Tests.yml -> tests.yml@v1 (preserves version matrix ["1","1.10"], coverage) - Documentation.yml -> documentation.yml@v1 - FormatCheck.yml -> runic.yml@v1 (new; applied Runic formatting) - SpellCheck.yml -> spellcheck.yml@v1 (new) - Downgrade.yml -> downgrade.yml@v1 (new; julia-version lts, skip Pkg,TOML) - TagBot.yml (new; registered package, standard setup) Add dependabot.yml (github-actions weekly + julia daily for /, /docs). Apply Runic formatting to src/SciMLIterators.jl. 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 standard set via the centralized reusable workflows in
SciML/.github(every call pinned@v1).Workflows converted
CI.yml) →tests.yml@v1. Preserves the exact matrix:version: ["1", "1.10"], ubuntu/x64 single OS, no test groups. Original collected coverage (codecov), so coverage is left at the default (enabled).documentation.yml@v1.Workflows added (standard checks)
runic.yml@v1. The repo did not previously run Runic, so Runic was installed and run in-place; the resulting formatting change tosrc/SciMLIterators.jlis included in this PR so the check passes.spellcheck.yml@v1. Rantyposlocally — no findings, no_typos.tomlneeded.downgrade.yml@v1(julia-version: lts,skip: Pkg,TOML). None existed before.JuliaRegistries/TagBot@v1setup. The package is registered in General and had no TagBot workflow.Dependency automation
.github/dependabot.yml:github-actions(weekly,/) andjulia(daily, dirs/and/docs— the only dirs with aProject.toml;test/has none) with theall-julia-packagesgroup.Notes / caveats
CI.yml/Documentation.ymltriggered on themasterbranch, but the repo's default branch ismain. The new callers trigger on bothmasterandmainso they fire correctly on the actual default branch.Tests,Documentation,Format Check,Spell Check,Downgrade). Required-status-checks in branch protection must be updated accordingly.🤖 Generated with Claude Code