From d7a30275d1c8fdb7da8ee81a8ec2e763df64a951 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Sun, 7 Jul 2024 22:15:07 -0700 Subject: [PATCH] Update pylint.yml Added testing to the workflow --- .github/workflows/pylint.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 6c91acd..8532cf6 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -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 +