Update MysqlCompose.php #318
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: bowphp | |
on: [ push, pull_request ] | |
env: | |
FTP_HOST: localhost | |
FTP_USER: username | |
FTP_PASSWORD: password | |
FTP_PORT: 21 | |
jobs: | |
lunix-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
php: [8.1, 8.2] | |
os: [ubuntu-latest] | |
stability: [prefer-lowest, prefer-stable] | |
name: PHP ${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Setup MySQL | |
uses: mirromutth/mysql-action@v1.1 | |
with: | |
host port: 3306 | |
container port: 3306 | |
character set server: 'utf8mb4' | |
collation server: 'utf8mb4_general_ci' | |
mysql version: '5.7' | |
mysql database: 'test_db' | |
mysql root password: 'password' | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, mysql, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, redis | |
coverage: none | |
- run: docker run --net=host -p 21:21 -e USER=$FTP_USER -e PASS=$FTP_PASSWORD -d --name ftp -v $(pwd)/:/ftp/$FTP_USER emilybache/vsftpd-server | |
- run: docker run -p 1080:1080 -p 1025:1025 -d --name maildev soulteary/maildev | |
- run: docker run -p 6379:6379 -d --name redis redis | |
- run: docker run -p 5432:5432 --name postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=postgres -e POSTGRES_PASSWORD=postgres -d postgis/postgis | |
- run: docker run -d -p 11300:11300 schickling/beanstalkd | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
- name: Copy the php ini config | |
run: cp php.dist.ini php.ini | |
- name: Install dependencies | |
run: composer update --prefer-dist --no-interaction | |
- name: Create test cache directory | |
run: if [ ! -d /tmp/bowphp_testing ]; then mkdir -p /tmp/bowphp_testing; fi; | |
- name: Run test suite | |
run: composer run-script test |