Skip to content

Bump scrapy from 2.11.1 to 2.11.2 #31

Bump scrapy from 2.11.1 to 2.11.2

Bump scrapy from 2.11.1 to 2.11.2 #31

Workflow file for this run

name: build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python 3.9
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Lint with flake8
run: |
flake8 scrapy_scrapingbee tests examples
- name: Run unit tests
run: |
pip install .
pytest tests