Skip to content
Closed
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
16 changes: 6 additions & 10 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,15 @@ jobs:
uses: actions/checkout@v5

- name: Set up Python
shell: bash
run: |
apt update
apt install lsb-release xvfb git curl make -y
curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH"
uv python install python${{ env.MAIN_PYTHON_VERSION }}
uv venv /env
uses: actions/setup-python@v5
with:
python-version: ${{ env.MAIN_PYTHON_VERSION }}
- name: Install Python requirements
run: |
python${{ env.MAIN_PYTHON_VERSION }} -m venv /env
. /env/bin/activate
uv pip install --upgrade pip
uv pip install -r requirements/requirements_doc.txt
pip install --upgrade pip
pip install -r requirements/requirements_doc.txt

- name: Build docs
env:
Expand Down
Loading