Skip to content

Commit

Permalink
test defaulting arch
Browse files Browse the repository at this point in the history
  • Loading branch information
ayush9pandey committed Jul 11, 2024
1 parent fd1d06d commit e085598
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy_bioscrape.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test_bioscrape.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest]
os: [macos-latest]
python-version: ["3.7", "3.11"]

steps:
Expand All @@ -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
Expand Down

0 comments on commit e085598

Please sign in to comment.