Skip to content

Bump pillow from 10.2.0 to 10.3.0 #19

Bump pillow from 10.2.0 to 10.3.0

Bump pillow from 10.2.0 to 10.3.0 #19

Workflow file for this run

---
name: "Lint"
on: # yamllint disable-line rule:truthy
pull_request:
push:
branches: master
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Upgrade Setuptools
run: pip install --upgrade setuptools wheel
- name: Install requirements
run: pip install -r requirements-dev.txt
- name: Run lint
run: make lint