Skip to content

check linting is working #46

check linting is working

check linting is working #46

Workflow file for this run

name: lint
on: [push, pull_request]
jobs:
code_linting:
runs-on: ubuntu-latest
steps:
- 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