diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index be3bb3e..c36b34f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -14,26 +14,5 @@ concurrency: jobs: tests: - name: "Tests" - strategy: - fail-fast: false - matrix: - # Only the root umbrella package's own test groups are listed here. - # The lib/* sublibraries are covered by SublibraryCI.yml (project model); - # they are intentionally not re-tested through the root matrix. - group: - - Core - - QA - version: - - "lts" - - "1" - - "pre" - exclude: - # QA (explicit-imports check) does not need the pre-release Julia. - - group: QA - version: "pre" - uses: "SciML/.github/.github/workflows/tests.yml@v1" - with: - julia-version: "${{ matrix.version }}" - group: "${{ matrix.group }}" + uses: "SciML/.github/.github/workflows/grouped-tests.yml@v1" secrets: "inherit" diff --git a/test/test_groups.toml b/test/test_groups.toml new file mode 100644 index 0000000..1d3b88e --- /dev/null +++ b/test/test_groups.toml @@ -0,0 +1,8 @@ +# Root umbrella package's own test groups (group x version matrix). +# The lib/* sublibraries are covered by SublibraryCI.yml (project model) and are +# intentionally not re-tested through this root matrix. +[Core] +versions = ["lts", "1", "pre"] + +[QA] +versions = ["lts", "1"]