From 984562744051e4ae15bf0b7e56a8d8475baa47cd Mon Sep 17 00:00:00 2001 From: Yusuke Miyazaki Date: Mon, 13 May 2024 02:23:22 +0900 Subject: [PATCH] Update CI matrix for Intel & M1 macOS --- .github/workflows/tests.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bdb5289..06af675 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,9 +14,18 @@ jobs: # https://help.github.com/articles/virtual-environments-for-github-actions platform: - ubuntu-latest # ubuntu-22.04 - - macos-latest # macOS-12 + - macos-13 # macos-13 (Intel) + - macos-latest # macos-14 (M1) - windows-latest # windows-2022 python-version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12, pypy-3.7, pypy-3.8, pypy-3.9, pypy-3.10] + exclude: + # Exclude the following configuration to avoid an error. + # Error: The version '...' with architecture 'arm64' was not found for macOS 14.4.1. + # The list of all available versions can be found here: https://raw.githubusercontent.com/actions/python-versions/main/versions-manifest.json + - platform: macos-latest + python-version: 3.7 + - platform: macos-latest + python-version: pypy-3.7 steps: - uses: actions/checkout@v3