Skip to content

feat: complete config flow UX overhaul with grouped sport/league sele… #1974

feat: complete config flow UX overhaul with grouped sport/league sele…

feat: complete config flow UX overhaul with grouped sport/league sele… #1974

Workflow file for this run

name: Pylint
on:
push:
pull_request:
schedule:
- cron: "0 0 * * *"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Check if the file exists before trying to install it
if [ -f requirements_test.txt ]; then pip install -r requirements_test.txt; fi
pip install pylint
- name: Analysing the code with pylint
run: |
pylint --recursive=y .