Skip to content

Fix mysql gone away issue - #1241 #1221 #1220 #78

Fix mysql gone away issue - #1241 #1221 #1220

Fix mysql gone away issue - #1241 #1221 #1220 #78

Workflow file for this run

name: PHP Composer
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
php-versions: [ '8.2', '8.3' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
# Memcached
- name: Setup Memcached
uses: KeisukeYamashita/memcached-actions@v1
# MySQL
- name: Setup MySQL
uses: mirromutth/[email protected]
with:
mysql version: 5.7
mysql database: windwalker_test
mysql root password: ut1234
# PostgreSQL
- name: Setup PostgreSQL
run: docker run --rm --name=postgres -e POSTGRES_PASSWORD=ut1234 -e POSTGRES_DB=windwalker_test -p 5432:5432 -d postgres
# PHP
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
extensions: pdo, pdo_mysql, pdo_pgsql, pdo_sqlite, mysqli, sqlite3
# coverage: xdebug
# tools: php-cs-fixer, phpunit
- name: Get composer cache directory
id: composercache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache composer dependencies
uses: actions/cache@v2
with:
path: ${{ steps.composercache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer update --prefer-dist --prefer-stable --no-progress --no-suggest --ignore-platform-reqs
- name: Start PHP Server
run: php -S localhost:8100 bin/test-server.php &> /dev/null &
- name: Run test suite
run: php vendor/bin/phpunit --configuration phpunit.ci.xml