From 7d026bfa6b5cc8dc3936c244d12836a04cb6a0db Mon Sep 17 00:00:00 2001 From: Shivam Mathur Date: Sat, 28 Dec 2019 02:18:01 +0530 Subject: [PATCH] Update symfony examples --- examples/symfony-mysql.yml | 5 ++--- examples/symfony-postgres.yml | 5 ++--- examples/symfony.yml | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/examples/symfony-mysql.yml b/examples/symfony-mysql.yml index 95aba36c..eae1da31 100644 --- a/examples/symfony-mysql.yml +++ b/examples/symfony-mysql.yml @@ -26,9 +26,8 @@ jobs: uses: shivammathur/setup-php@v1 #https://github.com/shivammathur/setup-php with: php-version: ${{ matrix.php-versions }} - extensions: mbstring, xml, ctype, iconv, mysql + extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, mysql coverage: xdebug #optional - tools: phpunit - name: Get composer cache directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" @@ -51,4 +50,4 @@ jobs: env: DATABASE_URL: mysql://root:symfony@127.0.0.1:${{ job.services.mysql.ports['3306'] }}/symfony - name: Run Tests - run: phpunit --coverage-text \ No newline at end of file + run: php bin/phpunit --coverage-text \ No newline at end of file diff --git a/examples/symfony-postgres.yml b/examples/symfony-postgres.yml index 94aeb1fa..77870058 100644 --- a/examples/symfony-postgres.yml +++ b/examples/symfony-postgres.yml @@ -26,9 +26,8 @@ jobs: uses: shivammathur/setup-php@v1 #https://github.com/shivammathur/setup-php with: php-version: ${{ matrix.php-versions }} - extensions: mbstring, xml, ctype, iconv, pgsql + extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite, pgsql coverage: xdebug #optional - tools: phpunit - name: Get composer cache directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" @@ -51,4 +50,4 @@ jobs: env: DATABASE_URL: postgres://postgres:postgres@127.0.0.1:${{ job.services.postgres.ports[5432] }}/postgres?charset=UTF-8 - name: Run Tests - run: phpunit --coverage-text \ No newline at end of file + run: php bin/phpunit --coverage-text \ No newline at end of file diff --git a/examples/symfony.yml b/examples/symfony.yml index 169b74f1..8158518b 100644 --- a/examples/symfony.yml +++ b/examples/symfony.yml @@ -17,9 +17,8 @@ jobs: uses: shivammathur/setup-php@v1 #https://github.com/shivammathur/setup-php with: php-version: ${{ matrix.php-versions }} - extensions: mbstring, xml, ctype, iconv + extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite coverage: xdebug #optional - tools: phpunit - name: Get composer cache directory id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" @@ -36,4 +35,4 @@ jobs: composer require symfony/orm-pack composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader - name: Run Tests - run: phpunit --coverage-text \ No newline at end of file + run: php bin/phpunit --coverage-text \ No newline at end of file