Skip to content

basic zensical support #935

basic zensical support

basic zensical support #935

Workflow file for this run

name: Build wheel
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
jobs:
build:
name: Build wheels
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install HDF5 dev libraries
run: |
sudo apt-get update
sudo apt-get install -y libhdf5-dev
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Install build dependencies
run: uv sync
- name: Build wheels (and sdist)
run: |
uv build --wheel --sdist