chore(deps): bump pillow from 9.5.0 to 11.0.0 #294
This file contains 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: Prod Dependencies | |
on: | |
pull_request: | |
branches: | |
- 'dev' | |
paths: | |
- 'pyproject.toml' | |
- 'poetry.lock' | |
- '.github/workflows/poetry*.yml' | |
jobs: | |
poetry-prod-build: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
matrix: | |
os: | |
- 'ubuntu-24.04' | |
python-version: | |
- '3.11' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Poetry | |
run: pip install --upgrade poetry pip setuptools wheel | |
- name: Get Poetry version | |
run: poetry --version | |
- name: Check pyproject.toml validity | |
run: poetry check --no-interaction | |
- name: install canary production dependencies | |
run: poetry install --no-dev --no-interaction |