Skip to content

Bump wheel from 0.34.2 to 0.38.1 (#8) #25

Bump wheel from 0.34.2 to 0.38.1 (#8)

Bump wheel from 0.34.2 to 0.38.1 (#8) #25

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.6
uses: actions/setup-python@v1
with:
python-version: 3.6
- 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