Skip to content

Add build targets: Python 3.9, 3.10 #6

Add build targets: Python 3.9, 3.10

Add build targets: Python 3.9, 3.10 #6

Workflow file for this run

name: build-python
on:
push:
branches: [ master]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9', '3.10']
steps:
- uses: actions/checkout@v2
- name: "Build python module via maturin"
run: |
pip3 install --user maturin
$(python3 -m site --user-base)/bin/maturin build --cargo-extra-args="--features python-module"