Files
breadcrumb-the-shire/.gitea/workflows/qa-required.yaml
aminovfariz a2ea9f385d
Some checks failed
deploy / QA gates (push) Failing after 17s
deploy / Build & deploy (push) Has been skipped
qa-required / qa-required (push) Failing after 16s
fix(ci): debug - ls /var/www to find why composer.json not found
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-05 11:42:23 +02:00

33 lines
775 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 "ls /var/www/ && composer install --no-interaction --prefer-dist"
- name: Run required QA gates
run: bin/qa-required.sh