setup-php/examples/laravel-mysql.yml

60 lines
2.0 KiB
YAML
Raw Normal View History

2019-10-10 19:17:17 +07:00
# GitHub Action for Laravel with MySQL and Redis
name: Testing Laravel with MySQL
2019-10-03 17:43:34 +07:00
on: [push, pull_request]
jobs:
laravel:
2019-10-08 19:42:54 +07:00
name: Laravel (PHP ${{ matrix.php-versions }})
2019-10-03 17:43:34 +07:00
runs-on: ubuntu-latest
env:
DB_DATABASE: laravel
DB_USERNAME: root
2019-10-03 17:43:34 +07:00
DB_PASSWORD: password
BROADCAST_DRIVER: log
CACHE_DRIVER: redis
QUEUE_CONNECTION: redis
SESSION_DRIVER: redis
services:
mysql:
image: mysql:5.7
env:
MYSQL_ALLOW_EMPTY_PASSWORD: false
MYSQL_ROOT_PASSWORD: password
MYSQL_DATABASE: laravel
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
redis:
image: redis
ports:
- 6379/tcp
options: --health-cmd="redis-cli ping" --health-interval=10s --health-timeout=5s --health-retries=3
strategy:
fail-fast: false
2019-10-08 19:42:54 +07:00
max-parallel: 3
2019-10-03 17:43:34 +07:00
matrix:
2019-10-08 19:42:54 +07:00
php-versions: ['7.2', '7.3', '7.4']
2019-10-03 17:43:34 +07:00
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup PHP, with composer and extensions
2019-10-03 17:43:34 +07:00
uses: shivammathur/setup-php@master #https://github.com/shivammathur/setup-php
with:
php-version: ${{ matrix.php-versions }}
2019-10-08 19:42:54 +07:00
extension-csv: mbstring, dom, fileinfo, mysql
coverage: xdebug #optional
2019-10-03 17:43:34 +07:00
- name: Install Composer dependencies
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
- name: Prepare the application
run: |
2019-10-08 19:42:54 +07:00
php -r "file_exists('.env') || copy('.env.example', '.env');"
2019-10-03 17:43:34 +07:00
php artisan key:generate
- name: Clear Config
2019-10-08 19:42:54 +07:00
run: php artisan config:clear
2019-10-03 17:43:34 +07:00
- name: Run Migration
run: php artisan migrate -v
2019-10-08 19:42:54 +07:00
env:
DB_PORT: ${{ job.services.mysql.ports['3306'] }}
- name: Test with phpunit
run: vendor/bin/phpunit --coverage-text
2019-10-03 17:43:34 +07:00
env:
DB_PORT: ${{ job.services.mysql.ports['3306'] }}