Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 1 addition & 15 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,5 @@ concurrency:

jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
- "lts"
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: "${{ matrix.version }}"
os: "${{ matrix.os }}"
uses: "SciML/.github/.github/workflows/grouped-tests.yml@v1"
secrets: "inherit"
9 changes: 9 additions & 0 deletions test/test_groups.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Root test-group matrix for ModelingToolkitNeuralNets.jl, consumed by the
# canonical grouped-tests.yml@v1 caller. The single "All" group reproduces the
# previous Tests.yml matrix: the full suite (QA + functional tests, dispatched
# via GROUP=All in test/runtests.jl) on Julia "1" and "lts", across all three
# OSes. runtests.jl runs QA whenever GROUP != "Core", so GROUP=All runs
# everything in one job per cell, matching the old behavior exactly.
[All]
versions = ["1", "lts"]
os = ["ubuntu-latest", "macos-latest", "windows-latest"]
Loading