mirror of
https://github.com/shivammathur/setup-php.git
synced 2024-11-23 04:11:06 +07:00
71 lines
2.6 KiB
YAML
71 lines
2.6 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
|
|
|
|
# Docs: https://docs.github.com/en/actions/using-containerized-services
|
|
services:
|
|
postgres:
|
|
image: postgres:latest
|
|
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:
|
|
php-versions: ['7.4', '8.0', '8.1']
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
# Docs: https://github.com/shivammathur/setup-php
|
|
- name: Setup PHP
|
|
uses: shivammathur/setup-php@v2
|
|
with:
|
|
php-version: ${{ matrix.php-versions }}
|
|
tools: phpunit-bridge
|
|
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, pgsql
|
|
coverage: xdebug
|
|
|
|
# Local PostgreSQL service in GitHub hosted environments is disabled by default.
|
|
# If you are using it instead of service containers, make sure you start it.
|
|
# - name: Start postgresql service
|
|
# run: sudo systemctl start postgresql.service
|
|
|
|
- name: Get composer cache directory
|
|
id: composer-cache
|
|
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Cache composer dependencies
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ steps.composer-cache.outputs.dir }}
|
|
# 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-
|
|
|
|
- name: Install Composer dependencies
|
|
run: composer install --no-progress --prefer-dist --optimize-autoloader
|
|
|
|
- name: Run Migration
|
|
run: |
|
|
composer require --dev 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: Install PHPUnit
|
|
run: simple-phpunit install
|
|
|
|
- name: Run tests
|
|
run: simple-phpunit --coverage-text
|