Skip to content

Fix one example in the documentation (#1202) #13

Fix one example in the documentation (#1202)

Fix one example in the documentation (#1202) #13

Workflow file for this run

name: Build Any Wheel
on:
push:
branches:
- main
- 'releases/**'
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: build wheel
run: python -m pip wheel . -v
- name: install twine
run: python -m pip install twine
- name: check wheel
run: python -m twine check ./skl2onnx*.whl
- uses: actions/upload-artifact@v4
with:
path: ./skl2onnx*.whl