From e085598f11d0891cad663684466939e0b8cbcf8f Mon Sep 17 00:00:00 2001 From: ayush9pandey Date: Thu, 11 Jul 2024 13:27:13 -0700 Subject: [PATCH] test defaulting arch --- .github/workflows/deploy_bioscrape.yml | 1 - .github/workflows/test_bioscrape.yml | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_bioscrape.yml b/.github/workflows/deploy_bioscrape.yml index 48144d9..5fbc49f 100644 --- a/.github/workflows/deploy_bioscrape.yml +++ b/.github/workflows/deploy_bioscrape.yml @@ -18,7 +18,6 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - # architecture is x64 for macos with python-version 3.7 and default for all others. architecture: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.7' && 'x64' || '' }} - name: Install dependencies run: | diff --git a/.github/workflows/test_bioscrape.yml b/.github/workflows/test_bioscrape.yml index 63fd917..89a114f 100644 --- a/.github/workflows/test_bioscrape.yml +++ b/.github/workflows/test_bioscrape.yml @@ -8,7 +8,7 @@ jobs: strategy: max-parallel: 4 matrix: - os: [ubuntu-latest] + os: [macos-latest] python-version: ["3.7", "3.11"] steps: @@ -17,6 +17,7 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} + architecture: ${{ matrix.os == 'macos-latest' && matrix.python-version == '3.7' && 'x64' || '' }} - name: Install dependencies run: | python -m pip install --upgrade pip