Skip to content

Bump pillow from 10.0.0 to 10.3.0 #106

Bump pillow from 10.0.0 to 10.3.0

Bump pillow from 10.0.0 to 10.3.0 #106

Workflow file for this run

name: Python CI
on: [push, pull_request]
jobs:
pre-commit:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10.12"
cache: "pip"
- name: Install poetry
uses: abatilo/actions-poetry@v2
- name: Setup a local virtual environment (if no poetry.toml file)
run: |
poetry config virtualenvs.create true --local
poetry config virtualenvs.in-project true --local
- uses: actions/cache@v3
name: Define a cache for the virtual environment based on the dependencies lock file
with:
path: ./.venv
key: venv-${{ hashFiles('poetry.lock') }}
- name: Install the project dependencies
run: poetry install
- uses: pre-commit/[email protected]
- uses: pre-commit-ci/[email protected]
if: always()