dev #9

Merged
avm merged 100 commits from dev into main 2026-03-17 16:06:44 +03:00
Showing only changes of commit bb34c194f8 - Show all commits

View File

@@ -7,7 +7,7 @@ on:
branches: [ main, develop, dev ] branches: [ main, develop, dev ]
env: env:
PYTHON_VERSION: "3" PYTHON_VERSION: "3.11"
jobs: jobs:
lint: lint:
@@ -23,14 +23,16 @@ jobs:
- name: Install Python and uv - name: Install Python and uv
run: | run: |
apt-get update && apt-get install -y python3 python3-venv apt-get update && apt-get install -y software-properties-common
add-apt-repository -y ppa:deadsnakes/ppa
apt-get update && apt-get install -y python3.11 python3.11-venv
curl -LsSf https://astral.sh/uv/install.sh | sh curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
- name: Create virtual environment and install dependencies - name: Create virtual environment and install dependencies
run: | run: |
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
uv venv uv venv --python python3.11
source .venv/bin/activate source .venv/bin/activate
uv sync --dev uv sync --dev
@@ -59,14 +61,16 @@ jobs:
- name: Install Python and uv - name: Install Python and uv
run: | run: |
apt-get update && apt-get install -y python3 python3-venv apt-get update && apt-get install -y software-properties-common
add-apt-repository -y ppa:deadsnakes/ppa
apt-get update && apt-get install -y python3.11 python3.11-venv
curl -LsSf https://astral.sh/uv/install.sh | sh curl -LsSf https://astral.sh/uv/install.sh | sh
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
- name: Create virtual environment and install dependencies - name: Create virtual environment and install dependencies
run: | run: |
export PATH="$HOME/.local/bin:$PATH" export PATH="$HOME/.local/bin:$PATH"
uv venv uv venv --python python3.11
source .venv/bin/activate source .venv/bin/activate
uv sync --dev uv sync --dev