Skip to content

Commit bc0a16d

Browse files
Merge pull request #605 from ChrisRackauckas-Claude/sublibrary-ci-project-model
ci: uniformize onto centralized CI (project-model SublibraryCI + cleanup)
2 parents 72fce99 + 9f388dc commit bc0a16d

2 files changed

Lines changed: 39 additions & 0 deletions

File tree

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Doc Preview Cleanup
2+
3+
on:
4+
pull_request:
5+
types: [closed]
6+
7+
concurrency:
8+
group: ${{ github.workflow }}-${{ github.ref }}
9+
cancel-in-progress: true
10+
11+
permissions:
12+
contents: write
13+
14+
jobs:
15+
doc-preview-cleanup:
16+
uses: "SciML/.github/.github/workflows/docs-preview-cleanup.yml@v1"
17+
secrets: "inherit"

.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)