From af9660c3d0b3e3cf4496fa40549de22bf07e5cb1 Mon Sep 17 00:00:00 2001 From: Anant Thazhemadam Date: Thu, 17 Oct 2024 09:59:01 +0530 Subject: [PATCH] ci: test with `1`, `lts` and `pre` versions of julia --- .github/workflows/Tests.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/Tests.yml b/.github/workflows/Tests.yml index d70ebd2..7a684df 100644 --- a/.github/workflows/Tests.yml +++ b/.github/workflows/Tests.yml @@ -15,5 +15,13 @@ concurrency: jobs: tests: name: "Tests" + strategy: + matrix: + version: + - "1" + - "lts" + - "pre" uses: "SciML/.github/.github/workflows/tests.yml@v1" + with: + julia-version: "${{ matrix.version }}" secrets: "inherit"