Skip to content

Set default ToO window at instatiation (#71) #309

Set default ToO window at instatiation (#71)

Set default ToO window at instatiation (#71) #309

Workflow file for this run

name: Pylint
on: [push, pull_request]
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
cache: 'pip'
cache-dependency-path: pyproject.toml
- name: Install dependencies
run: |
pip install --upgrade pip
pip install --editable ".[dev]"
- name: Analysing the code with pylint
run: |
pylint wintertoo --fail-under=10.00