From 57255f66fa51976cf2826470003884ba8c1e7d79 Mon Sep 17 00:00:00 2001 From: Anant Thazhemadam Date: Thu, 17 Oct 2024 09:59:51 +0530 Subject: [PATCH] ci: test with `1`, `lts` and `pre` versions of julia --- .github/workflows/Tests.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index 80e81163..977b9532 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -19,7 +19,14 @@ concurrency: jobs: tests: name: "Tests" + strategy: + matrix: + version: + - "1" + - "lts" + - "pre" uses: "SciML/.github/.github/workflows/tests.yml@v1" with: group: "CPU" + julia-version: "${{ matrix.version }}" secrets: "inherit"