From d91a67cc94bedc2ba8c013f9e6e4329f7799b311 Mon Sep 17 00:00:00 2001 From: Leandro Martinez Date: Mon, 18 Nov 2024 21:10:14 -0300 Subject: [PATCH] do not run CI on 1.6 MacOS - latest and run on lts --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7423b486..e7fff877 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,15 @@ jobs: matrix: version: - '1.6' + - 'lts' - 'pre' os: - ubuntu-latest - macOS-latest - windows-latest + exclude: + - version: '1.6' + os: macOS-latest steps: - uses: actions/checkout@v3 - uses: julia-actions/setup-julia@v1