Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bmm21002 committed Feb 21, 2025
1 parent d652f01 commit 5eba22a
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,14 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: Install Dependencies
run:
run: |
python -m pip install --upgrade pip
pip install pytest pylint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Run pylint (Static Code Analysis)
run: |
pylint --disable=C0114,C0116,C0325,C0305 $(git ls-files '*.py')
- name: Run Tests with pytest
run: pytest tests/

0 comments on commit 5eba22a

Please sign in to comment.