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]
@@ -18,7 +18,11 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install pylint
pip install tqdm
pip install .
- name: Analysing the code with pylint
run: |
pylint $(git ls-files '*.py')
- name: Testing with unittest
run: |
python -m unittest tests