Skip to content

fix(ci): pip upgrade warnings #4

fix(ci): pip upgrade warnings

fix(ci): pip upgrade warnings #4

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: 🐍 Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
- name: 🔧 Install dependencies
run: |
pip install --upgrade pip
pip3 install requests python-dotenv Flask flask-cors pylint
- name: 🔬 Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')