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 - - -