From d5c350a6e8b8b38777493af72d1152d8a7d24efb Mon Sep 17 00:00:00 2001 From: jwortmann Date: Fri, 3 May 2024 10:45:58 +0200 Subject: [PATCH] Disable CI on Mac (#2462) * Disable coverage for UnitTesting in CI * Revert "Disable coverage for UnitTesting in CI" This reverts commit ed571317ea7c9078501cb4565d117a4bde86bb93. * Use the sledgehammer method --- .github/workflows/main.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ce5bfa1d0..061936a93 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,7 +20,10 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macOS-latest, windows-latest] + os: + - ubuntu-latest + # - macOS-latest + - windows-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4