Skip to content

Merge pull request #120 from lb-/lb--patch-1 #6

Merge pull request #120 from lb-/lb--patch-1

Merge pull request #120 from lb-/lb--patch-1 #6

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- uses: pre-commit/action@v3.0.0
test:
runs-on: ubuntu-latest
needs: lint
strategy:
matrix:
include:
- python: "3.8"
- python: "3.9"
- python: "3.10"
- python: "3.11"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install Pillow Wand
python -m pip install -e .[testing]
- name: Test
run: ./runtests.py