# 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: - 3306 options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 strategy: fail-fast: false max-parallel: 3 matrix: php-versions: ['7.2', '7.3'] steps: - name: Checkout uses: actions/checkout@v1 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@master #https://github.com/shivammathur/setup-php with: php-version: ${{ matrix.php-versions }} extension-csv: mbstring, phalcon4, mysql #use phalcon3 for the phalcon 3.x. coverage: xdebug #optional - 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'] }}