From d8c754382f42e0ffd8440e53f465074f1776c475 Mon Sep 17 00:00:00 2001 From: oop7 <110548351+oop7@users.noreply.github.com> Date: Thu, 11 Dec 2025 13:24:37 +0200 Subject: [PATCH] Set macOS build to run only on macos-latest Removed the matrix strategy for multiple macOS runners and set the workflow to use only macos-latest. Simplifies the build process and reduces resource usage. --- .github/workflows/build-macos.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 1004743..b57164b 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -13,10 +13,7 @@ env: jobs: build-macos: - strategy: - matrix: - os: [macos-latest, macos-14-large] - runs-on: ${{ matrix.os }} + runs-on: macos-latest steps: - name: Checkout code