setup-php/examples/symfony-postgres.yml

71 lines
2.6 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
2022-04-03 05:54:07 +07:00
# Docs: https://docs.github.com/en/actions/using-containerized-services
2019-10-08 19:42:54 +07:00
services:
postgres:
2021-12-15 18:19:10 +07:00
image: postgres:latest
2019-10-08 19:42:54 +07:00
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:
2021-12-15 18:19:10 +07:00
php-versions: ['7.4', '8.0', '8.1']
2019-10-08 19:42:54 +07:00
steps:
- name: Checkout
2022-03-02 07:30:52 +07:00
uses: actions/checkout@v3
2021-12-15 18:19:10 +07:00
# Docs: https://github.com/shivammathur/setup-php
- name: Setup PHP
uses: shivammathur/setup-php@v2
2019-10-08 19:42:54 +07:00
with:
php-version: ${{ matrix.php-versions }}
2021-07-17 13:19:03 +07:00
tools: phpunit-bridge
2019-12-28 03:48:01 +07:00
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, pgsql
2021-12-15 18:19:10 +07:00
coverage: xdebug
2022-04-03 05:54:07 +07:00
# 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 "::set-output name=dir::$(composer config cache-files-dir)"
2021-12-15 18:19:10 +07:00
- name: Cache composer dependencies
uses: actions/cache@v3
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-
2021-12-15 18:19:10 +07:00
2019-10-08 19:42:54 +07:00
- name: Install Composer dependencies
2021-07-17 13:19:03 +07:00
run: composer install --no-progress --prefer-dist --optimize-autoloader
2021-12-15 18:19:10 +07:00
2019-10-08 19:42:54 +07:00
- name: Run Migration
run: |
2021-07-17 13:19:03 +07:00
composer require --dev symfony/orm-pack
2019-10-08 19:42:54 +07:00
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
2021-12-15 18:19:10 +07:00
2021-07-17 13:19:03 +07:00
- name: Install PHPUnit
run: simple-phpunit install
2021-12-15 18:19:10 +07:00
2021-07-17 13:19:03 +07:00
- name: Run tests
run: simple-phpunit --coverage-text