diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 1b0cc85..358fa51 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -18,25 +18,7 @@ concurrency: jobs: tests: - name: "Tests" - strategy: - fail-fast: false - matrix: - version: - - "1" - - "lts" - group: - - Core - - LineSearchesJL - - QA - exclude: - # QA tests only run on latest stable Julia - - version: "lts" - group: QA - 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" enzyme: diff --git a/test/test_groups.toml b/test/test_groups.toml new file mode 100644 index 0000000..8f01bd4 --- /dev/null +++ b/test/test_groups.toml @@ -0,0 +1,8 @@ +[Core] +versions = ["1", "lts"] + +[LineSearchesJL] +versions = ["1", "lts"] + +[QA] +versions = ["1"]