Skip to content

automatically create programme category/channel/role and assign to users #3

automatically create programme category/channel/role and assign to users

automatically create programme category/channel/role and assign to users #3

Workflow file for this run

name: pylint
on:
push:
paths:
- ".github/workflows/pylint.yml"
- "**/*.py"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
pip install -r requirements.txt
- name: Run pylint
run: |
python -m pylint *.py */ --rcfile=.pylintrc --recursive=y --disable=fixme