Skip to content

Commit d72e89e

Browse files
committed
Update building pipeline
1 parent 15dd426 commit d72e89e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ubuntu.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,12 @@ jobs:
2020
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
2121
- name: Lint with Black
2222
run: |
23+
pip install black
2324
black . --check -l 120
2425
- name: Test with unittest
2526
run: |
2627
python -m unittest discover tests -v
2728
- name: Check types with mypy
2829
run: |
30+
pip install mypy
2931
mypy . --ignore-missing-imports

0 commit comments

Comments
 (0)