Skip to content

build(deps): bump pillow from 10.0.1 to 10.2.0 in /streamlit #95

build(deps): bump pillow from 10.0.1 to 10.2.0 in /streamlit

build(deps): bump pillow from 10.0.1 to 10.2.0 in /streamlit #95

Workflow file for this run

name: Ubuntu
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- python-version: 3.11
env:
TOXENV: py
# pinned deps
- python-version: 3.11
env:
TOXENV: extra-deps
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install system libraries
if: matrix.python-version == 'pypy3.11' || contains(matrix.env.TOXENV, 'pinned')
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxslt-dev
- name: Run tests
env: ${{ matrix.env }}
run: |
pip install -U tox
pwd
ls -ltr
tox
- name: Upload coverage report
run: bash <(curl -s https://codecov.io/bash)