Skip to content

Bump pillow from 12.1.1 to 12.2.0 (#72) #156

Bump pillow from 12.1.1 to 12.2.0 (#72)

Bump pillow from 12.1.1 to 12.2.0 (#72) #156

Workflow file for this run

---
name: Tests
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
tests:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
steps:
- uses: "actions/checkout@v3"
- uses: "actions/setup-python@v4"
with:
python-version: "${{ matrix.python-version }}"
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: uv sync --all-groups
- name: "Run linting checks"
run: make lint
- name: "Build package & docs"
run: |
make build
make docs-build
- name: "Run tests with SQLite"
env:
TEST_DATABASE_URI: "sqlite://"
run: make test
- name: "Enforce coverage"
run: make cov
- name: "Upload Coverage"
uses: codecov/codecov-action@v3
with:
files: coverage.xml