Skip to content

Finally fix CI module case and invoke deletion of ecm.info file when no encrypted channels is present #751

Finally fix CI module case and invoke deletion of ecm.info file when no encrypted channels is present

Finally fix CI module case and invoke deletion of ecm.info file when no encrypted channels is present #751

Workflow file for this run

name: Pylint Code Check
on:
push:
branches:
- master
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run Pylint
run: |
pylint --exit-zero $(git ls-files '*.py')