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

jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
group:
- "All"
- "nopre"
version:
- "1"
- "lts"
- "pre"
os:
- ubuntu-latest
- macOS-latest
- windows-latest
exclude:
# Don't run nopre tests on pre-release Julia
- group: "nopre"
version: "pre"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: "${{ matrix.version }}"
os: "${{ matrix.os }}"
group: "${{ matrix.group }}"
uses: "SciML/.github/.github/workflows/grouped-tests.yml@v1"
secrets: "inherit"
13 changes: 13 additions & 0 deletions test/test_groups.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Root test-group matrix for CurveFit.jl, consumed by the reusable
# grouped-tests.yml workflow via scripts/compute_affected_sublibraries.jl
# --root-matrix. runtests.jl reads the GROUP env var and dispatches via
# TestItemRunner tags: "All" runs everything except :nopre-tagged items,
# "nopre" runs only :nopre-tagged items.

[All]
versions = ["1", "lts", "pre"]
os = ["ubuntu-latest", "macOS-latest", "windows-latest"]

[nopre]
versions = ["1", "lts"]
os = ["ubuntu-latest", "macOS-latest", "windows-latest"]
Loading