Skip to content

Commit 566f735

Browse files
committed
Consolidate
1 parent 24b04e6 commit 566f735

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,25 +13,32 @@ jobs:
1313
uses: actions/setup-python@v2
1414
with:
1515
python-version: 3.9
16+
1617
- name: Install PyLint
1718
run: |
1819
python -m pip install --upgrade pip
1920
pip install "pylint==2.6.0"
21+
2022
- name: Install Black
2123
run: |
2224
pip install "black==19.3b0"
25+
2326
- name: Install Flake8
2427
run: |
25-
pip install "flake==3.8.4"
28+
pip install "flake8==3.8.4"
29+
2630
- name: Install Partition Manager
2731
run: |
2832
pip install --editable ".[pymysql]"
33+
2934
- name: Analysing the code with pylint
3035
run: |
3136
python -m pylint -E partitionmanager
37+
3238
- name: Checking format with Black
3339
run: |
3440
python -m black --check .
41+
3542
- name: Checking format with Flake8
3643
run: |
3744
python -m flake8

0 commit comments

Comments
 (0)