Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
mborgerson committed Nov 30, 2023
1 parent 13c2994 commit 68207a0
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,27 @@ jobs:
name: wheels
path: ./wheelhouse/*.whl

test_macos_arm_wheels:
needs: build_wheels
name: Test macOS ARM64 wheels
runs-on: [macOS, ARM64]

steps:
- uses: actions/download-artifact@v3
with:
name: source
path: dist
- uses: actions/download-artifact@v3
with:
name: wheels
path: dist
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- run: |
pip install ./wheels/pypcode-*-cp312-abi3-macosx_*_arm64.whl
python -m pypcode -l
build_docs:
name: Build docs
runs-on: ubuntu-latest
Expand Down

0 comments on commit 68207a0

Please sign in to comment.