Update pylint.yml

Added testing to the workflow
This commit is contained in:
Jamie Hardt
2024-07-07 22:15:07 -07:00
committed by GitHub
parent 61458660c9
commit d7a30275d1

View File

@@ -1,4 +1,4 @@
name: Pylint name: Lint and Test
on: [push] on: [push]
@@ -18,7 +18,11 @@ jobs:
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install pylint pip install pylint
pip install tqdm pip install .
- name: Analysing the code with pylint - name: Analysing the code with pylint
run: | run: |
pylint $(git ls-files '*.py') pylint $(git ls-files '*.py')
- name: Testing with unittest
run: |
python -m unittest tests