Skip to content

Commit

Permalink
test and build for intel mac (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinsung authored May 3, 2024
1 parent 4cda465 commit 1e46027
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
os: [ubuntu-latest, macos-latest, macos-13]

steps:
- uses: actions/checkout@v3
Expand Down
20 changes: 19 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Run tests
run: |
tox run -e py${{ matrix.python-version }}
test-macos:
test-macos-arm:
runs-on: macos-latest
strategy:
matrix:
Expand All @@ -52,6 +52,24 @@ jobs:
- name: Run tests
run: |
tox run -e py${{ matrix.python-version }}
test-macos-intel:
runs-on: macos-13
strategy:
matrix:
python-version: ["3.8", "3.12"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
run: |
python -m pip install --upgrade pip
pip install tox
- name: Run tests
run: |
tox run -e py${{ matrix.python-version }}
check:
runs-on: ubuntu-latest
strategy:
Expand Down

0 comments on commit 1e46027

Please sign in to comment.