Skip to content

fix(ci): add Apple Silicon (arm64) wheel builds (#10) #40

fix(ci): add Apple Silicon (arm64) wheel builds (#10)

fix(ci): add Apple Silicon (arm64) wheel builds (#10) #40

Workflow file for this run

name: Continuous Integration
on:
push:
paths-ignore:
- '**.md'
- '**.rst'
- 'docs/**'
pull_request:
branches: [ main ]
paths-ignore:
- '**.md'
- '**.rst'
- 'docs/**'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.9', '3.13']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[test]
- name: Run tests with pytest
run: pytest