Skip to content

starting logic for getting teams reg season records #16

starting logic for getting teams reg season records

starting logic for getting teams reg season records #16

Workflow file for this run

name: Pylint
on:
push:
branches: [main, feat/*]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.1.7
- name: Set up Python 3.12
uses: actions/setup-python@v5.1.1
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt # Install dependencies from requirements.txt
pip install pylint
- name: Analysing the code with pylint
run: |
pylint --rcfile=.pylintrc $(git ls-files '*.py')