Skip to content

Commit

Permalink
another attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
mrogowski committed May 5, 2024
1 parent 6af01fe commit b7afa37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
architecture: ${{ startsWith('macos-', matrix.os) && 'arm64' || 'x64' }}
architecture: ${{ matrix.os == 'macos-latest' && 'arm64' || 'x64' }}

- name: Install
run: python -m pip install .[mpi,test,ai] pytest-cov
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
architecture: ${{ startsWith('macos-', matrix.os) && 'arm64' || 'x64' }}
architecture: ${{ matrix.os == 'macos-latest' && 'arm64' || 'x64' }}

- name: Install
run: python -m pip install .[test,ai]
Expand Down

0 comments on commit b7afa37

Please sign in to comment.