Skip to content

Commit 4c24996

Browse files
ci: add Sublibrary CI via centralized project-model workflow
This monorepo had no sublibrary CI, so its lib/* sublibraries were never tested. Add a thin caller of the centralized sublibrary-project-tests.yml, which lists lib/* and tests each via tests.yml project=lib/X. Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com> Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
1 parent 72fce99 commit 4c24996

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

.github/workflows/SublibraryCI.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Sublibrary CI
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
paths-ignore:
8+
- 'docs/**'
9+
push:
10+
branches:
11+
- master
12+
paths-ignore:
13+
- 'docs/**'
14+
15+
concurrency:
16+
group: ${{ github.workflow }}-${{ github.ref }}
17+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
18+
19+
jobs:
20+
sublibraries:
21+
uses: "SciML/.github/.github/workflows/sublibrary-project-tests.yml@v1"
22+
secrets: "inherit"

0 commit comments

Comments
 (0)