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:
1717 with :
1818 python-version : ' 3.10'
1919 - name : Install pipenv
20- uses : dschep/install-pipenv-action@v1
20+ run : |
21+ pip install pipx
22+ pipx install pipenv
2123 - name : Install dependencies
2224 run : |
2325 pipenv install --dev
2426 pipenv install sphinx
25- pipenv install sphinx_rtd_theme
27+ pipenv install sphinx_rtd_theme
2628 - name : Build docs
2729 run : |
2830 pipenv run sphinx-apidoc -f -o docs meilisearch/
Original file line number Diff line number Diff line change 2323 with :
2424 python-version : ${{ matrix.python-version }}
2525 - name : Install pipenv
26- uses : dschep/install-pipenv-action@v1
26+ run : |
27+ pip install pipx
28+ pipx install pipenv
2729 - name : Install dependencies
2830 run : pipenv install --dev --python=${{ matrix.python-version }}
2931 - name : Get the latest Meilisearch RC
Original file line number Diff line number Diff line change 1717 - name : Check release validity
1818 run : sh .github/scripts/check-release.sh
1919 - name : Install pipenv
20- uses : dschep/install-pipenv-action@v1
20+ run : |
21+ pip install pipx
22+ pipx install pipenv
2123 - name : Install dependencies
2224 run : |
2325 pipenv install
Original file line number Diff line number Diff line change 2727 with :
2828 python-version : ${{ matrix.python-version }}
2929 - name : Install pipenv
30- uses : dschep/install-pipenv-action@v1
30+ run : |
31+ pip install pipx
32+ pipx install pipenv
3133 - name : Install dependencies
3234 run : pipenv install --dev --python=${{ matrix.python-version }}
3335 - name : Meilisearch (latest version) setup with Docker
4547 with :
4648 python-version : 3.7
4749 - name : Install pipenv
48- uses : dschep/install-pipenv-action@v1
50+ run : |
51+ pip install pipx
52+ pipx install pipenv
4953 - name : Install dependencies
5054 run : pipenv install --dev --python=${{ matrix.python-version }}
5155 - name : Linter with pylint
6165 with :
6266 python-version : 3.9
6367 - name : Install pipenv
64- uses : dschep/install-pipenv-action@v1
68+ run : |
69+ pip install pipx
70+ pipx install pipenv
6571 - name : Install dependencies
6672 run : pipenv install --dev --python=${{ matrix.python-version }}
6773 - name : mypy type check
7783 with :
7884 python-version : 3.9
7985 - name : Install pipenv
80- uses : dschep/install-pipenv-action@v1
86+ run : |
87+ pip install pipx
88+ pipx install pipenv
8189 - name : Install dependencies
8290 run : pipenv install --dev --python=${{ matrix.python-version }}
8391 - name : black
93101 with :
94102 python-version : 3.9
95103 - name : Install pipenv
96- uses : dschep/install-pipenv-action@v1
104+ run : |
105+ pip install pipx
106+ pipx install pipenv
97107 - name : Install dependencies
98108 run : pipenv install --dev --python=${{ matrix.python-version }}
99109 - name : isort
You can’t perform that action at this time.
0 commit comments