From e6ec89658e33912aa9dd864af5d3f71bd1fbd560 Mon Sep 17 00:00:00 2001 From: Jens Caers Date: Thu, 27 Aug 2026 06:28:27 +0200 Subject: [PATCH] ci: add managed validation contract [skip ci] --- .gitea/workflows/managed-validation.yml | 113 ++++++++++++++++++++++++ 1 file changed, 113 insertions(+) create mode 100644 .gitea/workflows/managed-validation.yml diff --git a/.gitea/workflows/managed-validation.yml b/.gitea/workflows/managed-validation.yml new file mode 100644 index 0000000..aa26303 --- /dev/null +++ b/.gitea/workflows/managed-validation.yml @@ -0,0 +1,113 @@ +name: Managed validation + +on: + pull_request: + workflow_dispatch: + inputs: + profile: + description: Allowlisted validation profile + required: true + default: full + type: choice + options: [test, lint, typecheck, build, security, full] + +permissions: + contents: read + +concurrency: + group: managed-validation-${{ gitea.repository }}-${{ gitea.ref }} + cancel-in-progress: true + +jobs: + full: + name: full + runs-on: ubuntu-latest + timeout-minutes: 30 + steps: + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - name: Validate repository with a bounded profile + shell: bash + env: + REQUESTED_PROFILE: ${{ inputs.profile }} + run: | + set -euo pipefail + profile="${REQUESTED_PROFILE:-full}" + case "${profile}" in + test|lint|typecheck|build|security|full) ;; + *) echo "Profile is not allowlisted" >&2; exit 2 ;; + esac + + git diff --check + if git grep -nE '^(<<<<<<<|=======|>>>>>>>)' -- . ':!*.lock' ':!*.patch'; then + echo "Unresolved merge markers detected" >&2 + exit 1 + fi + + if [[ -f package.json ]]; then + corepack enable + if [[ -f pnpm-lock.yaml ]]; then + pnpm install --frozen-lockfile + [[ "${profile}" == test || "${profile}" == full ]] && pnpm --if-present test + [[ "${profile}" == lint || "${profile}" == full ]] && pnpm --if-present lint + [[ "${profile}" == typecheck || "${profile}" == full ]] && pnpm --if-present typecheck + [[ "${profile}" == build || "${profile}" == full ]] && pnpm --if-present build + elif [[ -f package-lock.json ]]; then + npm ci + [[ "${profile}" == test || "${profile}" == full ]] && npm run --if-present test + [[ "${profile}" == lint || "${profile}" == full ]] && npm run --if-present lint + if [[ "${profile}" == typecheck || "${profile}" == full ]]; then + npm run --if-present typecheck + fi + [[ "${profile}" == build || "${profile}" == full ]] && npm run --if-present build + fi + fi + + if [[ -f pyproject.toml || -f requirements.txt ]]; then + # Compile only tracked Python sources. Running compileall after a + # Node install would otherwise traverse node_modules and turn a + # lightweight baseline into a large runner workload. + git ls-files -z '*.py' | xargs -0 -r python -m py_compile + if [[ -f uv.lock ]]; then + python -m venv "${RUNNER_TEMP}/managed-uv" + uv_python="${RUNNER_TEMP}/managed-uv/bin/python" + "${uv_python}" -m pip install --disable-pip-version-check uv==0.10.0 + managed_uv="${RUNNER_TEMP}/managed-uv/bin/uv" + export UV_PROJECT_ENVIRONMENT="${RUNNER_TEMP}/managed-project-venv" + "${managed_uv}" sync --locked + if [[ "${profile}" == test || "${profile}" == full ]]; then + if "${managed_uv}" run python -c 'import pytest' 2>/dev/null; then + "${managed_uv}" run python -m pytest + fi + fi + if [[ "${profile}" == lint || "${profile}" == full ]]; then + if "${managed_uv}" run python -c 'import ruff' 2>/dev/null; then + "${managed_uv}" run python -m ruff check . + fi + fi + elif [[ -f requirements.txt ]]; then + python -m venv "${RUNNER_TEMP}/managed-python" + managed_python="${RUNNER_TEMP}/managed-python/bin/python" + "${managed_python}" -m pip install --disable-pip-version-check -r requirements.txt + if [[ "${profile}" == test || "${profile}" == full ]]; then + if "${managed_python}" -c 'import pytest' 2>/dev/null; then + "${managed_python}" -m pytest + fi + fi + fi + fi + + if [[ -f go.mod ]]; then + if [[ "${profile}" == test || "${profile}" == build || "${profile}" == full ]]; then + go test ./... + fi + fi + if [[ -f Cargo.toml ]]; then + if [[ "${profile}" == test || "${profile}" == build || "${profile}" == full ]]; then + cargo test --locked + fi + fi + if compgen -G '*.sln' >/dev/null; then + if [[ "${profile}" == test || "${profile}" == build || "${profile}" == full ]]; then + dotnet test --configuration Release + fi + fi