1 Commits

Author SHA1 Message Date
4f741c0a89 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 / Code Quality Checks (pull_request) Successful in 3m16s
CI/CD Pipeline / Run Tests (pull_request) Failing after 5m17s
CI/CD Pipeline / Telegram Notify Success (pull_request) Has been skipped
2026-04-28 11:41:50 +02:00

View File

@@ -62,7 +62,13 @@ jobs:
python3.11 -m venv .venv python3.11 -m venv .venv
. .venv/bin/activate . .venv/bin/activate
python -m pip install "uv==${UV_VERSION}" python -m pip install "uv==${UV_VERSION}"
uv sync --dev --frozen --active --no-managed-python --no-python-downloads uv sync \
--dev \
--frozen \
--active \
--python "$(command -v python3.11)" \
--no-managed-python \
--no-python-downloads
- name: Run Ruff linting - name: Run Ruff linting
run: | run: |
@@ -125,7 +131,13 @@ jobs:
python3.11 -m venv .venv python3.11 -m venv .venv
. .venv/bin/activate . .venv/bin/activate
python -m pip install "uv==${UV_VERSION}" python -m pip install "uv==${UV_VERSION}"
uv sync --dev --frozen --active --no-managed-python --no-python-downloads uv sync \
--dev \
--frozen \
--active \
--python "$(command -v python3.11)" \
--no-managed-python \
--no-python-downloads
- name: Run Django tests - name: Run Django tests
env: env: