Skip to content

Commit

Permalink
CI #100 test code style
Browse files Browse the repository at this point in the history
  • Loading branch information
prjemian committed Aug 18, 2022
1 parent 36a53df commit 2ad6c2c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,15 @@ jobs:
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
pip install black flake8
- name: Run flake8
- name: Run flake8 (lint)
run: |
flake8
# black
- name: Run black (code style)
run: |
black
test-matrix:
name: Python ${{ matrix.python-version }}
Expand Down

0 comments on commit 2ad6c2c

Please sign in to comment.