From 6e106a6d06fe657b638e217b7d04a59bb8d65be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandru=20Z=C4=83nogeanu?= Date: Fri, 29 Nov 2024 15:00:53 +0200 Subject: [PATCH] check linting is working --- .github/workflows/linters.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 81637db..7f47df7 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -4,12 +4,12 @@ jobs: code_linting: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v4 - name: Code linters run: | pip install -r requirements.txt + echo "Running pycodestyle" + pycodestyle --help pycodestyle workbench-agent.py + echo "Running pylint" pylint --errors-only --rcfile .pylintrc workbench-agent.py - - -