Skip to content

Commit

Permalink
gitaction adding install reqs
Browse files Browse the repository at this point in the history
  • Loading branch information
CyberRoute committed Sep 23, 2024
1 parent 7971c4b commit ed3cdf2
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,16 @@ jobs:
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
pipenv install
# 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/*")

0 comments on commit ed3cdf2

Please sign in to comment.