Skip to content

Commit

Permalink
[GA] skip architecture=x86 for macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
jborbely committed May 6, 2024
1 parent e706455 commit c3de93b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [windows-latest, ubuntu-latest, macos-13, macos-latest]
os: [windows-latest, ubuntu-latest, macos-latest, macos-13]
architecture: [x64, x86]
exclude:
- os: ubuntu-latest
architecture: x86
- os: macos-latest
architecture: x86
- os: macos-13
architecture: x86

Expand All @@ -47,7 +49,6 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Upgrade pip, setuptools and wheel
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit c3de93b

Please sign in to comment.