Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
ruwzeta committed Aug 6, 2023
2 parents 30c5352 + 8fd8205 commit a2ae3aa
Show file tree
Hide file tree
Showing 17 changed files with 26 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Pylint

on: [push]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
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 pylint
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# NBA-Analytics

Analytics Performed on NBA data extracted from nba reference.com. The data has been scraped using requests and Beautifulsoup

![alt text]([http://url/to/img.png](https://www.google.com/url?sa=i&url=https%3A%2F%2Fandscape.com%2Ffeatures%2Fhall-of-fame-jerry-west-designer-alan-siegel-nba-logo%2F&psig=AOvVaw2i1nFa-AKOMZENvE5z89kI&ust=1690994088596000&source=images&cd=vfe&opi=89978449&ved=0CBEQjRxqFwoTCJCd0oHyu4ADFQAAAAAdAAAAABAJ)https://www.google.com/url?sa=i&url=https%3A%2F%2Fandscape.com%2Ffeatures%2Fhall-of-fame-jerry-west-designer-alan-siegel-nba-logo%2F&psig=AOvVaw2i1nFa-AKOMZENvE5z89kI&ust=1690994088596000&source=images&cd=vfe&opi=89978449&ved=0CBEQjRxqFwoTCJCd0oHyu4ADFQAAAAAdAAAAABAJ)

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit a2ae3aa

Please sign in to comment.