Skip to content

Bump pillow from 11.3.0 to 12.2.0 in the uv group across 1 directory … #481

Bump pillow from 11.3.0 to 12.2.0 in the uv group across 1 directory …

Bump pillow from 11.3.0 to 12.2.0 in the uv group across 1 directory … #481

Workflow file for this run

name: Test Mongo
on:
push:
branches: [master]
pull_request:
branches: [master]
permissions:
contents: read
jobs:
build:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v7
- name: Setup MongoDB
uses: supercharge/mongodb-github-action@1.12.1
- name: Install uv and setup python ${{ matrix.python-version }}
uses: astral-sh/setup-uv@v7
with:
activate-environment: true
python-version: ${{ matrix.python-version }}
enable-cache: true
- name: Install dependencies
run: |
uv pip install flake8 pytest
- name: Install package
run: |
# Disable Cassandra optional extensions (faster testing).
export CASS_DRIVER_NO_EXTENSIONS=1
uv pip install -e ."[test,aio,bloom]"
uv pip list
- name: Test with pytest
run: |
export DO_TEST_MONGO=true
uv run pytest
- name: Minimize uv cache
run: uv cache prune --ci