Skip to content

bump version

bump version #16

Workflow file for this run

name: Tests
on:
- push
- pull_request
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
steps:
- name: Install system dependencies
run: sudo apt-get install --no-install-recommends --yes libvips
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: "3.10"
cache: pip
- name: Install dependencies
run: python -m pip install ".[tests]"
- name: Test with pytest
run: pytest