Fix spelling in a Python file #2038
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Python build wheels | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'common/**' | |
- 'spark/**' | |
- 'spark-shaded/**' | |
- 'pom.xml' | |
- 'python/**' | |
- '.github/workflows/python-wheel.yml' | |
pull_request: | |
branches: | |
- '*' | |
paths: | |
- 'common/**' | |
- 'spark/**' | |
- 'spark-shaded/**' | |
- 'pom.xml' | |
- 'python/**' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: ['ubuntu-latest', 'windows-latest', 'macos-latest'] | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up QEMU | |
if: runner.os == 'Linux' | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Build wheels | |
uses: pypa/[email protected] | |
env: | |
CIBW_SKIP: 'pp* *musl*' | |
CIBW_ARCHS_LINUX: 'x86_64 aarch64' | |
CIBW_ARCHS_WINDOWS: 'AMD64 ARM64' | |
CIBW_ARCHS_MACOS: 'x86_64 arm64' | |
with: | |
package-dir: python | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl |