Skip to content

Added Admin Comment field to Job Information Table #224

Added Admin Comment field to Job Information Table

Added Admin Comment field to Job Information Table #224

Workflow file for this run

name: Pylint
on:
pull_request:
paths:
- '.github/workflows/pylint.yml'
- '**.py'
push:
paths:
- '.github/workflows/pylint.yml'
- '**.py'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install aiosmtpd
pip install bs4
pip install pylint
pip install pytest
pip install PyYAML
pip install requests
pip install typing-extensions
- name: Analysing the code with pylint for Python 3.6
run: |
pylint --disable=duplicate-code,no-self-use $(git ls-files '*.py')
if: ${{ matrix.python-version == '3.6' }}
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
if: ${{ matrix.python-version != '3.6' }}