Bump actions/checkout from 5 to 6 #908
This file contains hidden or 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: | |
| tags: | |
| - v* | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| concurrency: | |
| group: build-${{ github.head_ref }} | |
| cancel-in-progress: true | |
| env: | |
| PYTHON_VERSION: '3.13' | |
| COINCURVE_IGNORE_SYSTEM_LIB: 'ON' | |
| COINCURVE_SECP256K1_STATIC: 'ON' | |
| COINCURVE_CROSS_HOST: '' | |
| CIBW_ENVIRONMENT_PASS_LINUX: > | |
| COINCURVE_IGNORE_SYSTEM_LIB | |
| COINCURVE_SECP256K1_STATIC | |
| COINCURVE_CROSS_HOST | |
| CIBW_BEFORE_ALL_MACOS: ./.github/scripts/install-macos-build-deps.sh | |
| CIBW_TEST_REQUIRES: pytest | |
| CIBW_TEST_COMMAND: > | |
| python -c | |
| "from coincurve import PrivateKey; | |
| a=PrivateKey(); | |
| b=PrivateKey(); | |
| assert a.ecdh(b.public_key.format())==b.ecdh(a.public_key.format()) | |
| " && | |
| python -m pytest {project} | |
| CIBW_SKIP: > | |
| pp* | |
| jobs: | |
| test: | |
| name: Test Python ${{ matrix.python-version }} on ${{ startsWith(matrix.os, 'macos-') && 'macOS' || startsWith(matrix.os, 'windows-') && 'Windows' || 'Linux' }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, windows-latest, macos-latest] | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install system dependencies | |
| if: runner.os == 'macOS' | |
| run: ./.github/scripts/install-macos-build-deps.sh | |
| - name: Install Hatch | |
| uses: pypa/hatch@install | |
| - name: Run static analysis | |
| run: hatch fmt --check | |
| - name: Check types | |
| run: hatch run types:check | |
| - name: Run tests | |
| run: hatch test --python ${{ matrix.python-version }} --cover-quiet --randomize | |
| - name: Create coverage report | |
| run: hatch run hatch-test.py${{ matrix.python-version }}:coverage xml | |
| - name: Upload coverage data | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: coverage-${{ matrix.os }}-${{ matrix.python-version }} | |
| path: coverage.xml | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v5 | |
| - name: Benchmark | |
| run: uv run --python-preference system scripts/bench.py | |
| coverage: | |
| name: Upload coverage | |
| needs: | |
| - test | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Download coverage data | |
| uses: actions/download-artifact@v5 | |
| with: | |
| pattern: coverage-* | |
| path: coverage_data | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| directory: coverage_data | |
| use_oidc: true | |
| linux-wheels-x86_64: | |
| name: Build Linux wheels for x86-64 | |
| needs: | |
| - test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v2.23 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-linux-wheels-x86_64 | |
| path: wheelhouse/*.whl | |
| if-no-files-found: error | |
| macos-wheels-x86_64: | |
| name: Build macOS wheels for x86-64 | |
| needs: | |
| - test | |
| runs-on: macos-15-intel | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v3.2.0 | |
| env: | |
| CIBW_ARCHS_MACOS: x86_64 | |
| CIBW_SKIP: "cp314t-*" | |
| MACOSX_DEPLOYMENT_TARGET: 10.13 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-macos-wheels-x86_64 | |
| path: wheelhouse/*.whl | |
| if-no-files-found: error | |
| macos-wheels-arm64: | |
| name: Build macOS wheels for ARM64 | |
| needs: | |
| - test | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v2.23 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-macos-wheels-arm64 | |
| path: wheelhouse/*.whl | |
| if-no-files-found: error | |
| windows-wheels-x86_64: | |
| name: Build Windows wheels for x86-64 | |
| needs: | |
| - test | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-python@v6 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v2.23 | |
| env: | |
| CIBW_ARCHS_WINDOWS: 'AMD64' | |
| CIBW_BEFORE_ALL: choco install -y --no-progress --no-color cmake>=3.28 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-windows-wheels-x86_64 | |
| path: wheelhouse/*.whl | |
| if-no-files-found: error | |
| windows-wheels-arm64: | |
| name: Build Windows wheels for ARM64 | |
| needs: | |
| - test | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v2.23 | |
| env: | |
| COINCURVE_CROSS_HOST: 'arm64' | |
| CIBW_ARCHS_WINDOWS: 'ARM64' | |
| CIBW_BEFORE_ALL: choco install -y --no-progress --no-color cmake>=3.28 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-windows-wheels-arm64 | |
| path: wheelhouse/*.whl | |
| if-no-files-found: error | |
| sdist: | |
| name: Build source distribution | |
| needs: | |
| - test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install build dependencies | |
| run: python -m pip install build | |
| - name: Build source distribution | |
| run: python -m build --sdist | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-sdist | |
| path: dist/* | |
| if-no-files-found: error | |
| linux-wheels-arm64: | |
| name: Build Linux wheels for ARM64 | |
| needs: | |
| - test | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.event.ref, 'refs/tags')) | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v3 | |
| with: | |
| platforms: arm64 | |
| - name: Build wheels | |
| uses: pypa/cibuildwheel@v2.23 | |
| env: | |
| CIBW_ARCHS_LINUX: aarch64 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-linux-wheels-arm64 | |
| path: wheelhouse/*.whl | |
| if-no-files-found: error | |
| publish: | |
| name: Publish release | |
| needs: | |
| - linux-wheels-x86_64 | |
| - macos-wheels-x86_64 | |
| - macos-wheels-arm64 | |
| - windows-wheels-x86_64 | |
| - windows-wheels-arm64 | |
| - sdist | |
| - linux-wheels-arm64 | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
| permissions: | |
| id-token: write | |
| steps: | |
| - uses: actions/download-artifact@v5 | |
| with: | |
| pattern: artifact-* | |
| merge-multiple: true | |
| path: dist | |
| - run: ls -l dist | |
| - name: Push build artifacts to PyPI | |
| uses: pypa/gh-action-pypi-publish@v1.13.0 | |
| with: | |
| skip-existing: true |