From 537d241f4ad481a7c1d1d08cc684eb5ec6649dc0 Mon Sep 17 00:00:00 2001 From: Hannes Rantzsch Date: Sun, 19 May 2024 11:22:36 +0200 Subject: [PATCH] add more targets --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cf2ad2e..ff8ee66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,12 +9,12 @@ on: jobs: Windows-test: - runs-on: windows-2022 + runs-on: [windows-2019, windows-2022] strategy: matrix: config: [Debug, Release] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run cmake run: cmake -G "Visual Studio 17" . -DBUILD_TESTS=yes -DCODE_COVERAGE=no - name: Build and run tests @@ -24,10 +24,10 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12, macos-13, macos-14] + os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04, macos-11, macos-12, macos-13, macos-14] config: [Debug, Release, Coverage] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install dependencies run: |