File tree Expand file tree Collapse file tree 1 file changed +17
-5
lines changed Expand file tree Collapse file tree 1 file changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -17,15 +17,27 @@ jobs:
17
17
with :
18
18
python-version : " 3.11"
19
19
20
- - name : Install Pylint
21
- run : pip install pylint
20
+ # ----------------------------------------------
21
+ # ----- install & configure poetry -----
22
+ # ----------------------------------------------
23
+ - name : Install Poetry
24
+ uses : snok/install-poetry@v1
25
+ with :
26
+ version : 1.8.3
27
+ virtualenvs-create : false
28
+ virtualenvs-in-project : true
29
+ installer-parallel : true
30
+
31
+ # ----------------------------------------------
32
+ # ----- install dependencies -----
33
+ # ----------------------------------------------
34
+ - name : Install dependencies
35
+ run : |
36
+ poetry install --no-interaction --no-root --with dev
22
37
23
38
- name : Lint check
24
39
run : pylint --disable=R,C application_examples examples
25
40
26
- - name : Install Black formatter
27
- run : pip install black
28
-
29
41
- name : Code style check
30
42
run : black . --check
31
43
You can’t perform that action at this time.
0 commit comments