From be59846ae38486c2bd9085e4467cf73c10b8df65 Mon Sep 17 00:00:00 2001 From: Raphael Mitsch Date: Tue, 4 Jul 2023 08:53:51 +0200 Subject: [PATCH] Fix cython-lint install and run. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ac3587e73..c599658f4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -47,8 +47,8 @@ jobs: python -m flake8 spacy --count --select=E901,E999,F821,F822,F823,W605 --show-source --statistics - name: cython-lint run: | - python -m pip install cython-lint -c requirements.txt --ignore E501,W291,E266 - cython-lint spacy + python -m pip install cython-lint -c requirements.txt + cython-lint spacy --ignore E501,W291,E266 tests: name: Test