Files
breadcrumb-the-shire/.gitea/workflows/qa-required.yaml
aminovfariz 03cdfa7702
Some checks failed
deploy / QA gates (push) Failing after 16s
deploy / Build & deploy (push) Has been skipped
qa-required / qa-required (push) Has been cancelled
fix(ci): wait for php container and use explicit workdir for composer install
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-05 11:41:51 +02:00

33 lines
774 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
sleep 10
- name: Install Composer dependencies
run: docker compose exec -T php bash -c "cd /var/www && composer install --no-interaction --prefer-dist"
- name: Run required QA gates
run: bin/qa-required.sh