Files
breadcrumb-the-shire/.gitea/workflows/qa-required.yaml
aminovfariz 5e8273b952
Some checks failed
deploy / QA gates (push) Failing after 6s
deploy / Build & deploy (push) Has been skipped
qa-required / qa-required (push) Failing after 7s
fix(ci): start only php+db+memcached in CI, skip nginx (file mount fails in runner)
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-05 11:39:45 +02:00

28 lines
585 B
YAML

name: qa-required
on:
push:
branches:
- main
pull_request:
jobs:
qa-required:
name: qa-required
runs-on: ubuntu-latest
# Phase 1: workflow is present and runnable, but branch protection does not
# require this check yet. Enable required checks in Phase 2.
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create .env for CI
run: cp .env.example .env
- name: Start project services
run: docker compose up -d php db memcached
- name: Run required QA gates
run: bin/qa-required.sh