chore: pin prettier to 3.5.1 to fix CI (#83) #290
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - uses: pre-commit/action@v3.0.1 | |
| # Make sure commit messages follow the conventional commits convention: | |
| # https://www.conventionalcommits.org | |
| commitlint: | |
| name: Lint Commit Messages | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: wagoid/commitlint-github-action@v6.2.1 | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.11" | |
| - "3.12" | |
| - "3.13" | |
| os: | |
| - ubuntu-latest | |
| - macOS-latest | |
| extension: | |
| - "skip_cython" | |
| - "use_cython" | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| allow-prereleases: true | |
| - uses: snok/install-poetry@v1.4.1 | |
| - name: Install Dependencies | |
| # the separate `pip install` phase is required because Poetry | |
| # appears to hide the output of `pip install` commands (and possibly | |
| # doesn't pass all environment variables through to the build) | |
| run: | | |
| env CYTHON_FORCE_REGEN=1 pip install --no-cache -v -e . | |
| poetry install --only=main,dev | |
| shell: bash | |
| env: | |
| REQUIRE_CYTHON: ${{ matrix.extension == 'use_cython' }} | |
| SKIP_CYTHON: ${{ matrix.extension == 'skip_cython' }} | |
| - name: Test with Pytest | |
| run: poetry run pytest -v -Wdefault --cov=ulid_transform --cov-report=term-missing:skip-covered --cov-report=xml tests | |
| shell: bash | |
| env: | |
| REQUIRE_CYTHON: ${{ matrix.extension == 'use_cython' }} | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| test32bit: | |
| name: "Test on 32-bit Alpine Linux" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Alpine Linux v3.18 for x86 | |
| uses: jirutka/setup-alpine@v1 | |
| with: | |
| arch: x86 | |
| branch: v3.18 | |
| - name: Set up Python | |
| run: | | |
| apk add gcc g++ musl-dev python3-dev py3-pip poetry | |
| shell: alpine.sh --root {0} | |
| - name: Install Dependencies | |
| run: | | |
| poetry add Cython | |
| REQUIRE_CYTHON=1 poetry -vvv install --only=main,dev | |
| shell: alpine.sh --root {0} | |
| - name: Test with Pytest | |
| run: poetry run pytest -v -Wdefault --cov=ulid_transform --cov-report=term-missing:skip-covered --cov-report=xml tests | |
| shell: alpine.sh --root {0} | |
| benchmark: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: | |
| - "3.13" | |
| os: | |
| - ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - uses: snok/install-poetry@v1.4.1 | |
| - name: Install Dependencies | |
| run: poetry install --only=main,dev,benchmark | |
| env: | |
| REQUIRE_CYTHON: 1 | |
| - name: Run benchmarks | |
| run: | | |
| poetry run pytest bench --benchmark-autosave | |
| echo '# Benchmark Results' >> $GITHUB_STEP_SUMMARY | |
| echo '```' >> $GITHUB_STEP_SUMMARY | |
| poetry run pytest-benchmark compare --columns=mean,ops >> $GITHUB_STEP_SUMMARY | |
| echo '```' >> $GITHUB_STEP_SUMMARY | |
| shell: bash | |
| codspeed_benchmark: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup Python 3.13 | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13 | |
| - uses: snok/install-poetry@v1.4.1 | |
| - name: Install Dependencies | |
| run: | | |
| REQUIRE_CYTHON=1 poetry install --only=main,dev | |
| shell: bash | |
| - name: Run benchmarks | |
| uses: CodSpeedHQ/action@v3 | |
| with: | |
| token: ${{ secrets.CODSPEED_TOKEN }} | |
| run: poetry run pytest --no-cov -vvvvv --codspeed tests/benchmarks | |
| release: | |
| needs: | |
| - test | |
| - lint | |
| - test32bit | |
| - commitlint | |
| runs-on: ubuntu-latest | |
| environment: release | |
| concurrency: release | |
| permissions: | |
| id-token: write | |
| contents: write | |
| outputs: | |
| released: ${{ steps.release.outputs.released }} | |
| newest_release_tag: ${{ steps.release_tag.outputs.newest_release_tag }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| ref: ${{ github.head_ref || github.ref_name }} | |
| # Do a dry run of PSR | |
| - name: Test release | |
| uses: python-semantic-release/python-semantic-release@v9.20.0 | |
| if: github.ref_name != 'main' | |
| with: | |
| root_options: --noop | |
| # On main branch: actual PSR + upload to PyPI & GitHub | |
| - name: Release | |
| uses: python-semantic-release/python-semantic-release@v9.20.0 | |
| id: release | |
| if: github.ref_name == 'main' | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Publish package distributions to PyPI | |
| uses: pypa/gh-action-pypi-publish@release/v1 | |
| if: steps.release.outputs.released == 'true' | |
| - name: Publish package distributions to GitHub Releases | |
| uses: python-semantic-release/upload-to-gh-release@main | |
| if: steps.release.outputs.released == 'true' | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Install python-semantic-release | |
| run: python3 -m pip install python-semantic-release==7.34.6 | |
| - name: Get Release Tag | |
| id: release_tag | |
| shell: bash | |
| run: | | |
| echo "newest_release_tag=$(semantic-release print-version --current)" >> $GITHUB_OUTPUT | |
| build_wheels: | |
| needs: [release] | |
| if: needs.release.outputs.released == 'true' | |
| name: Build wheels on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-24.04-arm | |
| - macos-latest | |
| - ubuntu-latest | |
| - windows-latest | |
| musl: ["", "musllinux"] | |
| exclude: | |
| - os: windows-latest | |
| musl: "musllinux" | |
| - os: macos-latest | |
| musl: "musllinux" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: "v${{ needs.release.outputs.newest_release_tag }}" | |
| fetch-depth: 0 | |
| # Used to host cibuildwheel | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install cibuildwheel | |
| run: python -m pip install cibuildwheel==2.22.0 | |
| - name: Build wheels | |
| run: python -m cibuildwheel --output-dir wheelhouse | |
| # to supply options, put them in 'env', like: | |
| env: | |
| CIBW_SKIP: cp36-* cp37-* cp38-* cp39-* cp310-* pp36-* pp37-* pp38-* pp39-* pp310-* ${{ matrix.musl == 'musllinux' && '*manylinux*' || '*musllinux*' }} | |
| CIBW_BEFORE_ALL_LINUX: apt-get install -y gcc || yum install -y gcc || apk add gcc | |
| CIBW_BUILD_VERBOSITY: 3 | |
| REQUIRE_CYTHON: 1 | |
| CIBW_ARCHS_LINUX: ${{ matrix.os == 'ubuntu-24.04-arm' && 'aarch64' || 'auto' }} | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| path: ./wheelhouse/*.whl | |
| name: wheels-${{ matrix.os }}-${{ matrix.musl }} | |
| upload_pypi: | |
| needs: [build_wheels] | |
| runs-on: ubuntu-latest | |
| environment: release | |
| steps: | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| # unpacks default artifact into dist/ | |
| # if `name: artifact` is omitted, the action will create extra parent dir | |
| pattern: wheels-* | |
| path: dist | |
| merge-multiple: true | |
| - uses: pypa/gh-action-pypi-publish@v1.12.4 | |
| with: | |
| user: __token__ | |
| password: ${{ secrets.PYPI_TOKEN }} | |
| # To test: repository_url: https://test.pypi.org/legacy/ |