[pre-commit.ci] pre-commit autoupdate #804
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: Build | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-python@v5.1.1 | |
with: | |
python-version: '3.10' | |
- run: | | |
python -m pip install pylint | |
python -m pip install -e . | |
- uses: pre-commit/action@v3.0.1 | |
with: | |
extra_args: pylint --all-files | |
build_sdist: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-python@v5.1.1 | |
with: | |
python-version: '3.10' | |
- name: Build sdist | |
run: | | |
python -m pip install --user build | |
python -m build --sdist | |
- uses: actions/upload-artifact@v4.3.5 | |
with: | |
name: source | |
path: dist/*.tar.gz | |
build_wheels: | |
needs: build_sdist | |
name: Build wheel ${{ matrix.wheel }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- { arch: arm64, wheel: cp310-macosx_arm64, os: macos-latest } | |
- { arch: x86_64, wheel: cp310-macosx_x86_64, os: macos-13 } | |
- { arch: x86_64, wheel: cp310-manylinux_x86_64, os: ubuntu-latest } | |
- { arch: x86_64, wheel: cp310-win_amd64, os: windows-2019 } | |
- { arch: arm64, wheel: cp311-macosx_arm64, os: macos-latest } | |
- { arch: x86_64, wheel: cp311-macosx_x86_64, os: macos-13 } | |
- { arch: x86_64, wheel: cp311-manylinux_x86_64, os: ubuntu-latest } | |
- { arch: x86_64, wheel: cp311-win_amd64, os: windows-2019 } | |
- { arch: arm64, wheel: cp312-macosx_arm64, os: macos-latest } | |
- { arch: x86_64, wheel: cp312-macosx_x86_64, os: macos-13 } | |
- { arch: x86_64, wheel: cp312-manylinux_x86_64, os: ubuntu-latest } | |
- { arch: x86_64, wheel: cp312-win_amd64, os: windows-2019 } | |
steps: | |
- name: Download source distribution | |
uses: actions/download-artifact@v4.1.8 | |
with: | |
name: source | |
- name: Unpack source distribution | |
shell: bash | |
run: tar --strip-components 1 -xvf *.tar.gz | |
- name: Build wheel | |
uses: pypa/cibuildwheel@v2.19.2 | |
with: | |
output-dir: wheelhouse | |
env: | |
CIBW_ARCHS_MACOS: ${{ matrix.arch }} | |
CIBW_BUILD: ${{ matrix.wheel }} | |
CIBW_TEST_COMMAND: python -m unittest discover -v -s {package}/tests | |
CIBW_BUILD_VERBOSITY: 1 | |
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.arch == 'arm64' && '11' || '10.14' }} | |
- uses: actions/upload-artifact@v4.3.5 | |
with: | |
name: ${{ matrix.wheel }} | |
path: ./wheelhouse/*.whl | |
build_docs: | |
name: Build docs | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.7 | |
- uses: actions/setup-python@v5.1.1 | |
with: | |
python-version: '3.12' | |
- run: | | |
pip install -e .[docs] | |
cd docs && make html coverage | |
upload_pypi: | |
name: Upload wheels to PyPI | |
needs: [lint, build_docs, build_sdist, build_wheels] | |
environment: | |
name: pypi | |
url: https://pypi.org/p/pypcode | |
permissions: | |
id-token: write | |
runs-on: ubuntu-latest | |
# Upload to PyPI on every tag starting with 'v' | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | |
steps: | |
- uses: actions/download-artifact@v4.1.8 | |
with: | |
path: artifacts | |
- run: | | |
mkdir dist | |
find artifacts -type f -exec mv {} dist \; | |
- uses: pypa/gh-action-pypi-publish@v1.9.0 |