Skip to content
This repository has been archived by the owner on Mar 28, 2024. It is now read-only.

build(deps): bump pillow from 10.0.1 to 10.2.0 #130

build(deps): bump pillow from 10.0.1 to 10.2.0

build(deps): bump pillow from 10.0.1 to 10.2.0 #130

Workflow file for this run

name: Python application
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v1
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade pipenv
pipenv install --system
- name: Run tests
run: |
python -m unittest discover -s tests -p "*.py"