Skip to content

Bump pillow from 9.5.0 to 10.0.1 #105

Bump pillow from 9.5.0 to 10.0.1

Bump pillow from 9.5.0 to 10.0.1 #105

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: PyTest
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pipx install poetry
- uses: actions/setup-python@v4
with:
python-version: '3.8'
cache: 'poetry'
- run: poetry install --with test
- run: poetry run pytest
env:
QT_QPA_PLATFORM: "offscreen"