Skip to content

Nba dashboard

Nba dashboard #3

Workflow file for this run

name: Python Lint Check
on:
pull_request:
paths:
- "**.py"
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Check out source repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Run flake8 Lint
run: |
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics