1 Commits

Author SHA1 Message Date
55137b2afe ci: expose dev manual actions on default branch
Some checks failed
CI/CD Pipeline / Manual Actions Require Dev Branch (pull_request) Has been skipped
CI/CD Pipeline / Run Tests (pull_request) Failing after 13m8s
CI/CD Pipeline / Code Quality Checks (pull_request) Failing after 13m9s
CI/CD Pipeline / Telegram Notify Success (pull_request) Has been skipped
2026-04-28 11:23:36 +02:00

View File

@@ -27,8 +27,6 @@ on:
env:
PYTHON_VERSION: "3.11"
UV_VERSION: "0.7.2"
PIP_DISABLE_PIP_VERSION_CHECK: "1"
jobs:
lint:
@@ -55,14 +53,15 @@ jobs:
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
- name: Create virtual environment and install dependencies
run: |
set -euo pipefail
python3.11 -m venv .venv
export PATH="$HOME/.local/bin:$PATH"
uv venv --python python3.11
. .venv/bin/activate
python -m pip install "uv==${UV_VERSION}"
uv sync --dev --frozen --active --no-managed-python --no-python-downloads
uv sync --dev --frozen
- name: Run Ruff linting
run: |
@@ -118,14 +117,15 @@ jobs:
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
- name: Create virtual environment and install dependencies
run: |
set -euo pipefail
python3.11 -m venv .venv
export PATH="$HOME/.local/bin:$PATH"
uv venv --python python3.11
. .venv/bin/activate
python -m pip install "uv==${UV_VERSION}"
uv sync --dev --frozen --active --no-managed-python --no-python-downloads
uv sync --dev --frozen
- name: Run Django tests
env: