Skip to content

fix: (v1) merging options should produce an option #3842

fix: (v1) merging options should produce an option

fix: (v1) merging options should produce an option #3842

Workflow file for this run

name: Tests
on:
pull_request:
workflow_dispatch:
concurrency:
group: wheels-${{ github.head_ref }}
cancel-in-progress: true
jobs:
pylint:
name: "PyLint"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Run PyLint
run: |
echo "::add-matcher::$GITHUB_WORKSPACE/.github/matchers/pylint.json"
pipx run nox -s pylint
make_sdist:
name: "Make SDist"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: true
- name: Build SDist
run: pipx run build --sdist
- name: Check metadata
run: pipx run twine check dist/*
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz
build_wheels:
name: "Wheel: ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v3
with:
submodules: true
- uses: pypa/cibuildwheel@v2.10.0
env:
CIBW_ARCHS_MACOS: universal2
CIBW_BUILD: cp39-win_amd64 cp37-manylinux_x86_64 cp38-macosx_universal2
- uses: pypa/cibuildwheel@v2.10.0
if: matrix.os == 'ubuntu-latest'
env:
CIBW_BUILD: cp311-manylinux_x86_64
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl