Skip to content

Commit

Permalink
test building wheels to avoid surprises at release time
Browse files Browse the repository at this point in the history
  • Loading branch information
bast committed May 26, 2021
1 parent 04aa3c2 commit 5b6a1ac
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/build-wheels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Build wheels

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
build:

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build wheels
uses: messense/maturin-action@v1
with:
maturin-version: latest
manylinux: auto
command: build
args: --release

0 comments on commit 5b6a1ac

Please sign in to comment.