Skip to content

Bump pillow from 10.0.1 to 10.2.0 (#23) #17

Bump pillow from 10.0.1 to 10.2.0 (#23)

Bump pillow from 10.0.1 to 10.2.0 (#23) #17

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