Skip to content

Commit 65e8b3c

Browse files
Fix NeuralPDE downstream groups
Co-Authored-By: Chris Rackauckas <accounts@chrisrackauckas.com>
1 parent 0c663b6 commit 65e8b3c

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

.github/workflows/Downstream.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313
matrix:
1414
package:
1515
- {user: SciML, repo: DiffEqFlux.jl, group: DiffEqFlux}
16-
- {user: SciML, repo: NeuralPDE.jl, group: NNPDE}
16+
- {user: SciML, repo: NeuralPDE.jl, group: NNPDE1}
17+
- {user: SciML, repo: NeuralPDE.jl, group: NNPDE2}
1718
- {user: SciML, repo: ModelingToolkit.jl, group: All}
1819
uses: "SciML/.github/.github/workflows/downstream.yml@v1"
1920
with:

test/qa/qa.jl

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,14 @@ run_qa(
4949
),
5050
ei_broken = (:no_implicit_imports,),
5151
)
52+
53+
@testset "NeuralPDE downstream groups" begin
54+
workflow = read(
55+
joinpath(@__DIR__, "..", "..", ".github", "workflows", "Downstream.yml"), String
56+
)
57+
groups = [
58+
only(m.captures) for m in
59+
eachmatch(r"\{user: SciML, repo: NeuralPDE\.jl, group: ([^}]+)\}", workflow)
60+
]
61+
@test groups == ["NNPDE1", "NNPDE2"]
62+
end

0 commit comments

Comments
 (0)