Skip to content

gitaction adding install reqs #18

gitaction adding install reqs

gitaction adding install reqs #18

Workflow file for this run

name: Pylint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
# Install pip and pipenv
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pipenv
# Install project dependencies using pipenv
- name: Install dependencies from Pipfile
run: |
pipenv install --dev
- name: Analysing the code with pylint
run: |
pylint $(find . -type f -name "*.py" ! -path "./ui/*")