Skip to content

Update Pillow to 10.1.0 for Python 3.13 compatibility #225

Update Pillow to 10.1.0 for Python 3.13 compatibility

Update Pillow to 10.1.0 for Python 3.13 compatibility #225

Workflow file for this run

name: CI
on:
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
test-local:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- run: |
make \
-e BUILD_TARGET=runtime \
-e REGISTRATION_CREDENTIALS=admin:password \
-e LOKOLE_QUEUE_BROKER_SCHEME=amqp \
build start integration-tests
- run: make status
if: ${{ failure() }}
- run: make stop
if: ${{ always() }}
test-unit:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v3
- run: |
make \
-e BUILD_TARGET=runtime \
-e LOKOLE_SENDGRID_KEY= \
-e LOKOLE_QUEUE_BROKER_SCHEME= \
ci build verify-build
- run: bash <(curl -s https://codecov.io/bash)
if: ${{ success() }}