File tree Expand file tree Collapse file tree 4 files changed +25
-9
lines changed Expand file tree Collapse file tree 4 files changed +25
-9
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,14 @@ jobs:
17
17
with :
18
18
python-version : ' 3.10'
19
19
- name : Install pipenv
20
- uses : dschep/install-pipenv-action@v1
20
+ run : |
21
+ pip install pipx
22
+ pipx install pipenv
21
23
- name : Install dependencies
22
24
run : |
23
25
pipenv install --dev
24
26
pipenv install sphinx
25
- pipenv install sphinx_rtd_theme
27
+ pipenv install sphinx_rtd_theme
26
28
- name : Build docs
27
29
run : |
28
30
pipenv run sphinx-apidoc -f -o docs meilisearch/
Original file line number Diff line number Diff line change 23
23
with :
24
24
python-version : ${{ matrix.python-version }}
25
25
- name : Install pipenv
26
- uses : dschep/install-pipenv-action@v1
26
+ run : |
27
+ pip install pipx
28
+ pipx install pipenv
27
29
- name : Install dependencies
28
30
run : pipenv install --dev --python=${{ matrix.python-version }}
29
31
- name : Get the latest Meilisearch RC
Original file line number Diff line number Diff line change 17
17
- name : Check release validity
18
18
run : sh .github/scripts/check-release.sh
19
19
- name : Install pipenv
20
- uses : dschep/install-pipenv-action@v1
20
+ run : |
21
+ pip install pipx
22
+ pipx install pipenv
21
23
- name : Install dependencies
22
24
run : |
23
25
pipenv install
Original file line number Diff line number Diff line change 27
27
with :
28
28
python-version : ${{ matrix.python-version }}
29
29
- name : Install pipenv
30
- uses : dschep/install-pipenv-action@v1
30
+ run : |
31
+ pip install pipx
32
+ pipx install pipenv
31
33
- name : Install dependencies
32
34
run : pipenv install --dev --python=${{ matrix.python-version }}
33
35
- name : Meilisearch (latest version) setup with Docker
45
47
with :
46
48
python-version : 3.7
47
49
- name : Install pipenv
48
- uses : dschep/install-pipenv-action@v1
50
+ run : |
51
+ pip install pipx
52
+ pipx install pipenv
49
53
- name : Install dependencies
50
54
run : pipenv install --dev --python=${{ matrix.python-version }}
51
55
- name : Linter with pylint
61
65
with :
62
66
python-version : 3.9
63
67
- name : Install pipenv
64
- uses : dschep/install-pipenv-action@v1
68
+ run : |
69
+ pip install pipx
70
+ pipx install pipenv
65
71
- name : Install dependencies
66
72
run : pipenv install --dev --python=${{ matrix.python-version }}
67
73
- name : mypy type check
77
83
with :
78
84
python-version : 3.9
79
85
- name : Install pipenv
80
- uses : dschep/install-pipenv-action@v1
86
+ run : |
87
+ pip install pipx
88
+ pipx install pipenv
81
89
- name : Install dependencies
82
90
run : pipenv install --dev --python=${{ matrix.python-version }}
83
91
- name : black
93
101
with :
94
102
python-version : 3.9
95
103
- name : Install pipenv
96
- uses : dschep/install-pipenv-action@v1
104
+ run : |
105
+ pip install pipx
106
+ pipx install pipenv
97
107
- name : Install dependencies
98
108
run : pipenv install --dev --python=${{ matrix.python-version }}
99
109
- name : isort
You can’t perform that action at this time.
0 commit comments