Update build.yml

This commit is contained in:
Ines Montani 2019-09-29 15:06:19 +02:00 committed by GitHub
parent 499c39acba
commit b2f41e2a9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ jobs:
max-parallel: 4
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: [2.7, 3.5, 3.6, 3.7]
python-version: [3.5, 3.6, 3.7]
runs-on: ${{ matrix.platform }}
steps:
@ -17,6 +17,10 @@ jobs:
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Lint with flake8
run: |
pip install flake8
python -m flake8 spacy --count --select=E901,E999,F821,F822,F823 --show-source --statistics
- name: Install dependencies
run: |
python -m pip install --upgrade pip==18.1 setuptools