From bac0f207b6b8d152c36d65d1b16f05ab68a24802 Mon Sep 17 00:00:00 2001 From: Alexander Grund Date: Mon, 7 Oct 2024 13:56:59 +0200 Subject: [PATCH] GHA: Add macos-13 & 14 macos-12 will be dropped by the end of 2024 so test with the newer versions already --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 914499db..4173f73d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,6 +94,9 @@ jobs: # OSX, clang - { compiler: clang, cxxstd: '11,14,17,20', os: macos-12, sanitize: yes } + - { name: MacOS w/ clang and sanitizers, + compiler: clang, cxxstd: '11,14,17,20,2b', os: macos-13, sanitize: yes } + - { compiler: clang, cxxstd: '11,14,17,20,2b', os: macos-14 } timeout-minutes: 120 runs-on: ${{matrix.os}}