From d19c1b3cc4e39256d0d70328339de75a257bb01d Mon Sep 17 00:00:00 2001 From: lucienlu-aws <132623944+lucienlu-aws@users.noreply.github.com> Date: Mon, 29 Apr 2024 16:38:28 -0700 Subject: [PATCH] Fix CI due to different macOS architecture (#246) --- .github/workflows/run-unit-tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-unit-tests.yml b/.github/workflows/run-unit-tests.yml index 63834e2..2e6dba9 100644 --- a/.github/workflows/run-unit-tests.yml +++ b/.github/workflows/run-unit-tests.yml @@ -17,7 +17,10 @@ jobs: fail-fast: false matrix: python-version: [3.7, 3.8, 3.9, "3.10", 3.11] - os: [ubuntu-latest, macOS-latest, windows-latest ] + # TODO: revert macOS-13 back to macOS-latest + # macOS-latest switched architectures and does not have older versions of python available + # https://github.com/actions/setup-python/issues/856 + os: [ubuntu-latest, macOS-13, windows-latest ] steps: - uses: actions/checkout@v2