We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24b04e6 commit 566f735Copy full SHA for 566f735
.github/workflows/ci.yml
@@ -13,25 +13,32 @@ jobs:
13
uses: actions/setup-python@v2
14
with:
15
python-version: 3.9
16
+
17
- name: Install PyLint
18
run: |
19
python -m pip install --upgrade pip
20
pip install "pylint==2.6.0"
21
22
- name: Install Black
23
24
pip install "black==19.3b0"
25
26
- name: Install Flake8
27
- pip install "flake==3.8.4"
28
+ pip install "flake8==3.8.4"
29
30
- name: Install Partition Manager
31
32
pip install --editable ".[pymysql]"
33
34
- name: Analysing the code with pylint
35
36
python -m pylint -E partitionmanager
37
38
- name: Checking format with Black
39
40
python -m black --check .
41
42
- name: Checking format with Flake8
43
44
python -m flake8
0 commit comments