Skip to content

* Drop Python3.7 support. #6

* Drop Python3.7 support.

* Drop Python3.7 support. #6

name: Test on supported Python versions
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
pillow-version: ["9.3.0"]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install wheel
pip install pillow==${{ matrix.pillow-version }}
pip install pytest
- name: Test
run: |
pytest