Skip to content

Bump pillow from 10.1.0 to 11.0.0 #89

Bump pillow from 10.1.0 to 11.0.0

Bump pillow from 10.1.0 to 11.0.0 #89

Workflow file for this run

name: "ubuntu | python 3.11 | 3.10 | 3.9 "
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
name: Ubuntu Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: test
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
python -m pytest tests/test_inference_server.py