2019-10-13 11:18:29 +07:00
|
|
|
# GitHub Action for Phalcon with MySQL
|
|
|
|
## Notes
|
|
|
|
## Make sure you have .env.example or .env file in your project
|
|
|
|
## and you have loaded Dotenv (https://github.com/vlucas/phpdotenv)
|
|
|
|
name: Testing Phalcon with MySQL
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
phalcon:
|
|
|
|
name: Phalcon (PHP ${{ matrix.php-versions }})
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
env:
|
|
|
|
DB_ADAPTER: mysql
|
|
|
|
DB_HOST: 127.0.0.1
|
|
|
|
DB_NAME: phalcon
|
|
|
|
DB_USERNAME: root
|
|
|
|
DB_PASSWORD: password
|
|
|
|
CODECEPTION_URL: 127.0.0.1
|
|
|
|
CODECEPTION_PORT: 8888
|
|
|
|
services:
|
|
|
|
mysql:
|
|
|
|
image: mysql:5.7
|
|
|
|
env:
|
|
|
|
MYSQL_ALLOW_EMPTY_PASSWORD: false
|
|
|
|
MYSQL_ROOT_PASSWORD: password
|
|
|
|
MYSQL_DATABASE: phalcon
|
|
|
|
ports:
|
2020-01-08 13:05:32 +07:00
|
|
|
- 3306/tcp
|
2019-10-13 11:18:29 +07:00
|
|
|
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2019-10-31 16:13:11 +07:00
|
|
|
php-versions: ['7.2', '7.3', '7.4']
|
2019-12-28 01:53:51 +07:00
|
|
|
# For phalcon 3.x, use
|
|
|
|
# php-versions: ['7.0', '7.1', '7.2', '7.3']
|
2019-10-13 11:18:29 +07:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2020-01-02 00:06:25 +07:00
|
|
|
uses: actions/checkout@v2
|
2019-10-13 11:18:29 +07:00
|
|
|
- name: Setup PHP, with composer and extensions
|
2020-02-14 14:15:46 +07:00
|
|
|
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
|
2019-10-13 11:18:29 +07:00
|
|
|
with:
|
|
|
|
php-version: ${{ matrix.php-versions }}
|
2019-12-09 12:22:43 +07:00
|
|
|
extensions: mbstring, dom, zip, phalcon4, mysql #use phalcon3 for the phalcon 3.x.
|
2019-10-13 11:18:29 +07:00
|
|
|
coverage: xdebug #optional
|
2020-02-26 23:36:23 +07:00
|
|
|
- name: Start mysql service
|
|
|
|
run: sudo /etc/init.d/mysql start
|
2019-11-27 07:30:34 +07:00
|
|
|
- name: Get composer cache directory
|
|
|
|
id: composer-cache
|
|
|
|
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
|
|
|
|
- name: Cache composer dependencies
|
|
|
|
uses: actions/cache@v1
|
|
|
|
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') }}
|
2019-11-27 07:30:34 +07:00
|
|
|
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
|
|
|
|
restore-keys: ${{ runner.os }}-composer-
|
2019-10-13 11:18:29 +07:00
|
|
|
- name: Install Composer dependencies
|
|
|
|
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
|
|
|
|
- name: Prepare the application
|
|
|
|
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
|
|
|
|
- name: Run Migration
|
|
|
|
run: |
|
|
|
|
if [ ! -e phinx.yml ]; then vendor/bin/phinx init; fi
|
|
|
|
vendor/bin/phinx migrate
|
|
|
|
vendor/bin/phinx seed:run
|
|
|
|
env:
|
|
|
|
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|
|
|
|
- name: Run Tests
|
|
|
|
run: |
|
|
|
|
(cd public && nohup php -S $CODECEPTION_URL:$CODECEPTION_PORT > phalcon.log 2>&1 &)
|
|
|
|
vendor/bin/codecept build
|
|
|
|
vendor/bin/codecept run
|
|
|
|
env:
|
|
|
|
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
|