Skip to content

Updated examples, split into standalone directories, fixed pylint issues #99

Updated examples, split into standalone directories, fixed pylint issues

Updated examples, split into standalone directories, fixed pylint issues #99

Workflow file for this run

name: Pylint
on:
push:
branches: [ "main" ]
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/release.yml'
- '.github/workflows/docs.yml'
- 'docs/**'
- 'README.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- '.github/workflows/ci.yml'
- '.github/workflows/release.yml'
- '.github/workflows/docs.yml'
- 'docs/**'
- 'README.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: ${{ vars.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install .
- name: Analysing the code with pylint
run: |
pylint --rcfile=.pylintrc $(git ls-files '*.py')