Align frontend API contracts #14

Merged
avm merged 6 commits from feature/frontend-api-alignment into dev 2026-03-22 16:03:22 +03:00
Showing only changes of commit 705245304e - Show all commits

View File

@@ -35,19 +35,15 @@ jobs:
- name: Install Python and uv
run: |
set -euo pipefail
export DEBIAN_FRONTEND=noninteractive
timeout 300s apt-get update
timeout 300s apt-get install -y software-properties-common curl
timeout 300s add-apt-repository -y ppa:deadsnakes/ppa
timeout 300s apt-get update
timeout 300s apt-get install -y python3.11 python3.11-venv
timeout 180s bash -lc 'curl -LsSf https://astral.sh/uv/install.sh | sh'
export PATH="$HOME/.local/bin:$PATH"
timeout 300s uv python install "${PYTHON_VERSION}"
- name: Create virtual environment and install dependencies
run: |
set -euo pipefail
export PATH="$HOME/.local/bin:$PATH"
uv venv --python python3.11
uv venv --python "${PYTHON_VERSION}"
. .venv/bin/activate
uv sync --dev --frozen
@@ -112,19 +108,15 @@ jobs:
- name: Install Python and uv
run: |
set -euo pipefail
export DEBIAN_FRONTEND=noninteractive
timeout 300s apt-get update
timeout 300s apt-get install -y software-properties-common curl
timeout 300s add-apt-repository -y ppa:deadsnakes/ppa
timeout 300s apt-get update
timeout 300s apt-get install -y python3.11 python3.11-venv
timeout 180s bash -lc 'curl -LsSf https://astral.sh/uv/install.sh | sh'
export PATH="$HOME/.local/bin:$PATH"
timeout 300s uv python install "${PYTHON_VERSION}"
- name: Create virtual environment and install dependencies
run: |
set -euo pipefail
export PATH="$HOME/.local/bin:$PATH"
uv venv --python python3.11
uv venv --python "${PYTHON_VERSION}"
. .venv/bin/activate
uv sync --dev --frozen