mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
45 lines
1.7 KiB
YAML
45 lines
1.7 KiB
YAML
# GitHub Action for Symfony with PostgreSQL
|
|
name: Testing Symfony with PostgreSQL
|
|
on: [push, pull_request]
|
|
jobs:
|
|
symfony:
|
|
name: Symfony (PHP ${{ matrix.php-versions }})
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
postgres:
|
|
image: postgres:10.8
|
|
env:
|
|
POSTGRES_USER: postgres
|
|
POSTGRES_PASSWORD: postgres
|
|
POSTGRES_DB: postgres
|
|
ports:
|
|
- 5432/tcp
|
|
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
|
|
strategy:
|
|
fail-fast: false
|
|
max-parallel: 3
|
|
matrix:
|
|
php-versions: ['7.3']
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
- name: Setup PHP, with composer and extensions
|
|
uses: shivammathur/setup-php@master #https://github.com/shivammathur/setup-php
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
extension-csv: mbstring, xml, ctype, iconv, pgsql
|
|
coverage: xdebug #optional
|
|
- name: Install Composer dependencies
|
|
run: |
|
|
composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
|
|
- name: Run Migration
|
|
run: |
|
|
composer require symfony/orm-pack
|
|
php bin/console doctrine:schema:update --force || echo "No migrations found or schema update failed"
|
|
php bin/console doctrine:migrations:migrate || echo "No migrations found or migration failed"
|
|
env:
|
|
DATABASE_URL: postgres://postgres:postgres@127.0.0.1:${{ job.services.postgres.ports[5432] }}/postgres?charset=UTF-8
|
|
- name: Run Tests
|
|
run: |
|
|
composer require phpunit
|
|
php bin/phpunit --coverage-text |