From b2f41e2a9b673d51e223cf6be6bb9029c2beb72d Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 29 Sep 2019 15:06:19 +0200 Subject: [PATCH 1/3] Update build.yml --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7c6d9e4c9..085f4abf0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -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 From e787e6d47f64e6a28a390b8764ccf85298105b51 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 29 Sep 2019 15:15:34 +0200 Subject: [PATCH 2/3] Update build.yml --- .github/workflows/build.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 085f4abf0..8dbac2897 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,13 +1,17 @@ name: Build and test -on: [push] +on: + push: + paths: + - '*' + - '!/website/*' jobs: build: strategy: max-parallel: 4 matrix: - platform: [ubuntu-latest, macos-latest, windows-latest] + platform: [ubuntu-16.04, macOS-10.14, windows-2016] python-version: [3.5, 3.6, 3.7] runs-on: ${{ matrix.platform }} From 80f67f6065895a53e64038b2652138da1c6b4b30 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Sun, 29 Sep 2019 15:24:28 +0200 Subject: [PATCH 3/3] Update build.yml --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8dbac2897..7b0c3e621 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -3,8 +3,8 @@ name: Build and test on: push: paths: - - '*' - - '!/website/*' + - '*' + - '!/website/*' jobs: build: