Skip to content

Bump pillow from 9.5.0 to 10.2.0 #12

Bump pillow from 9.5.0 to 10.2.0

Bump pillow from 9.5.0 to 10.2.0 #12

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
name: lint ${{ matrix.python-version }}
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: pip
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --all-files --verbose