Use the name of the table to create the relation #295
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
env: | |
DEFAULT_COMPOSER_FLAGS: "--prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi" | |
jobs: | |
phpunit: | |
name: PHP ${{ matrix.php }} on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
services: | |
postgres: | |
image: postgres:9.6 | |
env: | |
POSTGRES_USER: postgres | |
POSTGRES_PASSWORD: postgres | |
POSTGRES_DB: yiitest | |
ports: | |
- 5432:5432 | |
options: --name=postgres --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=3 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
php: ['5.4', '5.5', '5.6', '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: pecl | |
extensions: apc, curl, dom, imagick, intl, mbstring, mcrypt, memcached, mysql, pdo, pdo_mysql, pdo_pgsql, pdo_sqlite, pgsql, sqlite | |
ini-values: date.timezone='UTC', session.save_path="${{ runner.temp }}" | |
- 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 }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install dependencies | |
run: composer update $DEFAULT_COMPOSER_FLAGS | |
- name: Load database data | |
env: | |
PGHOST: 127.0.0.1 | |
PGUSER: postgres | |
PGDATABASE: yiitest | |
PGPASSWORD: postgres | |
PGPORT: ${{ job.services.postgres.ports['5432'] }} | |
run: | | |
sudo apt update && sudo apt --fix-broken install && sudo apt install -y postgresql-client | |
psql -U postgres yiitest < tests/data/pgsql.sql | |
echo "<?php unset(\$config['databases']['pgsql']['fixture']);" > tests/data/config.local.php | |
- name: Run unit tests with coverage | |
run: vendor/bin/phpunit --verbose --coverage-clover=coverage.clover --colors=always | |
if: matrix.php == '7.1' | |
- name: Run unit tests without coverage | |
run: vendor/bin/phpunit --verbose --colors=always | |
if: matrix.php != '7.1' | |
- name: Upload code coverage | |
run: | | |
wget https://scrutinizer-ci.com/ocular.phar | |
php ocular.phar code-coverage:upload --format=php-clover coverage.clover | |
if: matrix.php == '7.1' | |
continue-on-error: true # if is fork |