Skip to content

make wheels with github actions #1

make wheels with github actions

make wheels with github actions #1

Workflow file for this run

on: [push]
jobs:
build_on_ubuntu:
runs-on: ubuntu-latest
steps:
- name: Dependencies
uses: daaku/gh-action-apt-install@v4
with:
packages: zlib1g-dev libjpeg-dev libhdf5-dev
- name: Checkout on Ubuntu
uses: actions/checkout@v4
with:
fetch-depth: 1
- name : Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
cache-dependency-path: 'pyproject.toml'
- name: Install dependencies
run:
python -m pip install --upgrade pip numpy pybind11
- name: Build on Ubuntu
uses: threeal/[email protected]
with:
run-build: true