diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e22110d..2c9f83c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,21 +11,13 @@ jobs: fail-fast: false matrix: include: - - name: ubuntu-20.04-gcc-9 + - name: ubuntu-20.04-gcc os: ubuntu-20.04 - compiler: gcc-9 + compiler: gcc - - name: ubuntu-20.04-gcc-11 + - name: ubuntu-20.04-clang os: ubuntu-20.04 - compiler: gcc-11 - - - name: ubuntu-20.04-clang-9 - os: ubuntu-20.04 - compiler: clang-9 - - - name: ubuntu-20.04-clang-12 - os: ubuntu-20.04 - compiler: clang-12 + compiler: clang - name: ubuntu-22.04-clang-15-no-exceptions os: ubuntu-22.04 @@ -56,18 +48,14 @@ jobs: os: windows-2022 compiler: msvc - - name: macOS-12-gcc - os: macOS-12 + - name: macOS-13-gcc + os: macOS-13 compiler: gcc - - name: macOS-13-clang - os: macOS-13 + - name: macOS-14-clang + os: macOS-14 compiler: clang - # - name: macOS-14-clang - # os: macOS-14 - # compiler: clang - steps: - uses: actions/checkout@v4