setup-php/examples/symfony-postgres.yml

54 lines
2.2 KiB
YAML
Raw Normal View History

2019-10-10 19:17:17 +07:00
# GitHub Action for Symfony with PostgreSQL
2019-10-08 19:42:54 +07:00
name: Testing Symfony with PostgreSQL
on: [push, pull_request]
jobs:
2019-10-10 19:17:17 +07:00
symfony:
2019-10-08 19:42:54 +07:00
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
matrix:
2019-12-09 13:50:03 +07:00
php-versions: ['7.3', '7.4']
2019-10-08 19:42:54 +07:00
steps:
- name: Checkout
2020-01-02 00:06:25 +07:00
uses: actions/checkout@v2
2019-10-08 19:42:54 +07:00
- name: Setup PHP, with composer and extensions
2021-02-22 12:21:20 +07:00
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
2019-10-08 19:42:54 +07:00
with:
php-version: ${{ matrix.php-versions }}
2019-12-28 03:48:01 +07:00
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, pgsql
2019-10-08 19:42:54 +07:00
coverage: xdebug #optional
- name: Get composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
2020-06-08 08:39:31 +07:00
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
2019-12-28 01:53:51 +07:00
# Use composer.json for key, if composer.lock is not committed.
# key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
2019-10-08 19:42:54 +07:00
- name: Install Composer dependencies
run: |
2021-02-22 12:21:20 +07:00
composer require --dev symfony/orm-pack symfony/phpunit-bridge
2020-06-19 12:22:35 +07:00
composer install --no-progress --prefer-dist --optimize-autoloader
2021-02-22 12:21:20 +07:00
php bin/phpunit install
2019-10-08 19:42:54 +07:00
- name: Run Migration
run: |
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
2019-12-28 03:48:01 +07:00
run: php bin/phpunit --coverage-text