Skip to content

Bump Python version to 3.8 (#12) #30

Bump Python version to 3.8 (#12)

Bump Python version to 3.8 (#12) #30

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