Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: "3.9"
cache: "pipenv"
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: |
pipenv --python $(which python) install --dev
pipenv install --dev --python=3.9 --deploy
- name: Build docs
run: |
pipenv run sphinx-apidoc -f -o docs meilisearch/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv install --dev --python=${{ matrix.python-version }}
run: pipenv install --dev --python=${{ matrix.python-version }} --deploy
- name: Get the latest Meilisearch RC
run: echo "MEILISEARCH_VERSION=$(curl https://raw.githubusercontent.com/meilisearch/integration-guides/main/scripts/get-latest-meilisearch-rc.sh | bash)" >> $GITHUB_ENV
- name: Meilisearch (${{ env.MEILISEARCH_VERSION }}) setup with Docker
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv install --dev --python=${{ matrix.python-version }}
run: pipenv install --dev --python=${{ matrix.python-version }} --deploy
- name: Meilisearch (latest version) setup with Docker
run: docker run -d -p 7700:7700 getmeili/meilisearch-enterprise:latest meilisearch --no-analytics --master-key=masterKey
- name: Test with pytest
Expand All @@ -47,7 +47,7 @@ jobs:
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv install --dev --python=${{ matrix.python-version }}
run: pipenv install --dev --python=3.9 --deploy
- name: Linter with pylint
run: pipenv run pylint meilisearch tests

Expand All @@ -64,7 +64,7 @@ jobs:
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv install --dev --python=${{ matrix.python-version }}
run: pipenv install --dev --python=3.9 --deploy
- name: mypy type check
run: pipenv run mypy meilisearch

Expand All @@ -81,7 +81,7 @@ jobs:
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv install --dev --python=${{ matrix.python-version }}
run: pipenv install --dev --python=3.9 --deploy
- name: black
run: pipenv run black meilisearch tests --check

Expand All @@ -98,7 +98,7 @@ jobs:
- name: Install pipenv
run: pip install pipenv
- name: Install dependencies
run: pipenv install --dev --python=${{ matrix.python-version }}
run: pipenv install --dev --python=3.9 --deploy
- name: isort
run: pipenv run isort meilisearch tests --check-only

Expand Down
Loading
Loading