Skip to content

chore(deps): bump pillow from 12.1.0 to 12.2.0 #217

chore(deps): bump pillow from 12.1.0 to 12.2.0

chore(deps): bump pillow from 12.1.0 to 12.2.0 #217

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.12", "3.13" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: "true"
cache-suffix: "${{ matrix.python-version }}"
cache-dependency-glob: 'uv.lock'
- name: Install Dependencies
run: uv sync --python "${{ matrix.python-version }}" --all-extras --dev
- name: Run tests
run: uv run --python "${{ matrix.python-version }}" pytest
- name: Cache Clear
run: uv cache prune --ci