Files
breadcrumb-the-shire/.gitea/workflows/qa-required.yaml
aminovfariz 3dca38d1c2
Some checks failed
deploy / QA gates (push) Failing after 6s
deploy / Build & deploy (push) Has been skipped
qa-required / qa-required (push) Failing after 6s
fix(ci): run composer install inside php container before QA gates
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-05 11:40:28 +02:00

31 lines
718 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: Install Composer dependencies
run: docker compose exec -T php composer install --no-interaction --prefer-dist
- name: Run required QA gates
run: bin/qa-required.sh