Skip to content

Bump pillow from 9.3.0 to 10.0.1 #15

Bump pillow from 9.3.0 to 10.0.1

Bump pillow from 9.3.0 to 10.0.1 #15

Workflow file for this run

name: Build and Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install requirements
run: pip install -r requirements.txt nose coverage
- name: Run tests and collect coverage
run: nosetests --with-coverage --cover-inclusive --cover-package=sewar
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}