Skip to content

chore: bump pillow 9.5.0 -> 10.1.0 #479

chore: bump pillow 9.5.0 -> 10.1.0

chore: bump pillow 9.5.0 -> 10.1.0 #479

Workflow file for this run

name: build
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true
- name: Checkout LFS objects
run: git lfs checkout
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
poetry --version
- name: Install dependencies
run: poetry install --no-interaction
- name: Build HTML
working-directory: ./docs
env:
GITHUB_TOKEN: ${{ github.token }}
run: poetry run make html
- name: Build Python package
run: poetry build