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
22 changes: 1 addition & 21 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,25 +14,5 @@ concurrency:

jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
- "lts"
- "pre"
group:
- Core
- QA
exclude:
# JET 0.11.x has `julia = "1.12"` registry compat (1.12.x only),
# so it cannot resolve on Julia 1.13 prereleases. Skip the QA
# group on `pre` until upstream JET widens its julia compat.
- version: "pre"
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"
8 changes: 8 additions & 0 deletions test/test_groups.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
[Core]
versions = ["lts", "1", "pre"]

[QA]
# JET 0.11.x has `julia = "1.12"` registry compat (1.12.x only), so it cannot
# resolve on Julia 1.13 prereleases. Keep QA off `pre` until upstream JET
# widens its julia compat.
versions = ["lts", "1"]
Loading