build(deps): Bump pillow from 12.1.0 to 12.1.1 #1
Workflow file for this run
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: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| typecheck: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Sync runtime dependencies | |
| run: uv sync --locked | |
| - name: Run pyright | |
| run: uvx pyright | |
| sdist: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Build sdist | |
| run: uv build --sdist --no-sources | |
| - name: Check sdist metadata | |
| run: uvx --from twine twine check dist/*.tar.gz | |
| - name: Smoke test sdist | |
| run: uv run --isolated --no-project --with dist/*.tar.gz tests/smoke_test.py | |
| wheels: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pypa/cibuildwheel@v3.2.1 | |
| with: | |
| output-dir: wheelhouse | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.12" | |
| - name: Install twine | |
| run: python -m pip install twine | |
| - name: Check wheel metadata | |
| shell: bash | |
| run: python -m twine check wheelhouse/*.whl |