From 4fc839617b2b52b5adebfd1dd92f40b8bb45e0ae Mon Sep 17 00:00:00 2001 From: Henry Harutyunyan Date: Wed, 16 Sep 2020 14:49:17 +0400 Subject: [PATCH] Fix on step name for pylint action On analyzing the code with `pylint`, the name of the step is `Test with pytest`, which is certainly not what it does. --- ci/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/pylint.yml b/ci/pylint.yml index 657b06c..c16ba22 100644 --- a/ci/pylint.yml +++ b/ci/pylint.yml @@ -17,6 +17,6 @@ jobs: run: | python -m pip install --upgrade pip pip install pylint - - name: Test with pytest + - name: Analysing the code with pylint run: | pylint `ls -R|grep .py$|xargs`