Skip to content

Commit 57c4ad4

Browse files
ChrisRackauckas-ClaudeChrisRackauckasclaude
authored
Add standard SciML workflows: FormatCheck and SpellCheck (#38)
Adds the centralized-caller Format check (Runic) and Spell check workflows to bring ConcreteStructs.jl in line with the SciML standard CI uniformization. Co-authored-by: ChrisRackauckas-Claude <accounts@chrisrackauckas.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 8df9139 commit 57c4ad4

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: format-check
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
- 'main'
8+
- 'release-'
9+
tags: '*'
10+
pull_request:
11+
12+
jobs:
13+
runic:
14+
name: "Runic"
15+
uses: "SciML/.github/.github/workflows/runic.yml@v1"
16+
secrets: "inherit"
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Spell Check
2+
3+
on: [pull_request]
4+
5+
jobs:
6+
typos-check:
7+
name: "Spell Check with Typos"
8+
uses: "SciML/.github/.github/workflows/spellcheck.yml@v1"
9+
secrets: "inherit"

0 commit comments

Comments
Β (0)