Skip to content

ci: build pure wheels #2

ci: build pure wheels

ci: build pure wheels #2

Workflow file for this run

name: Build

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 22, Col: 27): A mapping was not expected
on: [push, pull_request]
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-14]
python-version: [3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
enable-cache: true
python-version: {{ matrix.python-version }}
- name: Build
run: uv sync --locked --all-extras --dev