Skip to content

Update README.md

Update README.md #48

Workflow file for this run

---
name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
python -c "import paperscraper"
- name: Run test suite
run: |
python -m pytest -sv paperscraper