Skip to content

Added server side pagination to logs and explicit row counts to queues #275

Added server side pagination to logs and explicit row counts to queues

Added server side pagination to logs and explicit row counts to queues #275

Workflow file for this run

name: Linting
on: [pull_request]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ["3.11"]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Analyzing the code with pylint
run: |
pylint --rcfile=.pylintrc OpenOrchestrator --good-names=OpenOrchestrator
- name: Analyzing the code with flake8
run: |
flake8 --extend-ignore=E501,E251 OpenOrchestrator