From 983149b8688f0417ce0755566957f67c7206e400 Mon Sep 17 00:00:00 2001 From: Ben Ryder Date: Mon, 20 Sep 2021 19:25:49 +0100 Subject: [PATCH] GH-29: Updating pylint workflow name. --- .github/workflows/pylint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 58fae00..a1384fb 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -5,7 +5,7 @@ on: [pull_request] jobs: run-pylint: - name: Run pylint + name: Test codebase with pylint runs-on: ubuntu-latest steps: @@ -23,6 +23,6 @@ jobs: python -m pip install --upgrade pip pip install -r requirements-dev.txt # Run pylint against all .py files in the codebase. - - name: Analysing the code with pylint + - name: Test codebase with pylint run: | pylint **/*.py